There was an error while loading. Please reload this page.
1 parent 7309cfb commit 7edd729Copy full SHA for 7edd729
1 file changed
.github/workflows/release.yml
@@ -108,5 +108,18 @@ jobs:
108
working-directory: aur-repo
109
run: |
110
chown -R builder:builder .
111
- su builder -c "makepkg -s"
112
- ls
+ su builder -c "makepkg -s --noconfirm"
+
113
+ - name: Find pkg filename
114
+ id: pkg
115
+ working-directory: aur-repo
116
+ run: |
117
+ PKG_FILE=$(basename *.pkg.tar.zst)
118
+ echo "name=${PKG_FILE}" >> "$GITHUB_OUTPUT"
119
120
+ - name: Upload pkg
121
+ uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
122
+ with:
123
+ name: ${{ steps.pkg.outputs.name }}
124
+ path: "aur-repo/*.pkg.tar.zst"
125
+ if-no-files-found: error
0 commit comments