Skip to content

Commit dd65e23

Browse files
committed
trying to fix aur pub
1 parent b4d6112 commit dd65e23

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ jobs:
3232
# if: contains(github.ref, 'refs/tags/v')
3333
steps:
3434
- uses: actions/checkout@v4
35-
- uses: ulises-jeremias/github-actions-aur-publish@v1
35+
- uses: anas-elgarhy/aur-release-action@v4.1
3636
with:
37-
pkgname: ttop
38-
pkgbuild: aur/PKGBUILD
39-
assets: aur/.INSTALL
40-
commit_username: ${{ secrets.AUR_USERNAME }}
41-
commit_email: ${{ secrets.AUR_EMAIL }}
37+
package_name: ttop
38+
pkgbuild_path: aur/PKGBUILD
39+
update_pkgbuild: true
40+
github_token: ${{ secrets.GITHUB_TOKEN }}
41+
git_username: ${{ secrets.AUR_USERNAME }}
42+
git_email: ${{ secrets.AUR_EMAIL }}
4243
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
43-
commit_message: Update AUR package
44-
ssh_keyscan_types: rsa,ecdsa,ed25519
45-
update_pkgver: true

aur/PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ arch=('x86_64')
88
depends=("glibc")
99
makedepends=("git" "nim")
1010
source=("git+$url.git#tag=v$pkgver"
11-
".INSTALL")
11+
"aur/.INSTALL")
1212
sha256sums=('SKIP'
1313
'SKIP')
14-
install=".INSTALL"
14+
install="aur/.INSTALL"
1515
backup=("etc/ttop.toml")
1616

1717
prepare() {

0 commit comments

Comments
 (0)