Skip to content

Commit a59c64f

Browse files
committed
fix: pass mewline.install as asset to AUR deploy action
1 parent 9cacfb0 commit a59c64f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/update-aur.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
with:
1919
pkgname: mewline-git
2020
pkgbuild: ./PKGBUILD
21+
assets: ./mewline.install
2122
commit_username: ${{ secrets.AUR_USERNAME }}
2223
commit_email: ${{ secrets.AUR_EMAIL }}
2324
ssh_private_key: ${{ secrets.AUR_SSH_KEY }}
@@ -45,7 +46,7 @@ jobs:
4546
run: |
4647
sed -i \
4748
-e "s/^pkgver=.*/pkgver=${{ steps.get_version.outputs.version }}/" \
48-
-e "s|^source=.*|source=(\"\$url/archive/refs/tags/v\$pkgver.tar.gz\")|" \
49+
-e "s|^source=.*|source=(\"$url/archive/refs/tags/v$pkgver.tar.gz\")|" \
4950
-e "s/mewline-v\$pkgver/mewline-\$pkgver/" \
5051
-e "s/^sha256sums=.*/sha256sums=('${{ steps.sha256.outputs.hash }}')/" \
5152
PKGBUILD.stable
@@ -55,6 +56,7 @@ jobs:
5556
with:
5657
pkgname: mewline
5758
pkgbuild: ./PKGBUILD.stable
59+
assets: ./mewline.install
5860
commit_username: ${{ secrets.AUR_USERNAME }}
5961
commit_email: ${{ secrets.AUR_EMAIL }}
6062
ssh_private_key: ${{ secrets.AUR_SSH_KEY }}

0 commit comments

Comments
 (0)