Skip to content

Commit

Permalink
Fix AUR deployment step in package.yml Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 10, 2025
1 parent 6cb7afb commit 4ab2fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ jobs:
- name: Compute SHA256 of source distribution
run: "echo SHA256=$(sha256sum dist/pyhmmer-${{ env.PKGVER }}.tar.gz | cut -f1 -d' ') >> $GITHUB_ENV"
- name: Generate PKGBUILD
run: 'sed -e "s/%pkgver/${{ github.ref }}/g" -e "s/%sha256sum/${{ env.SHA256 }}/g" pkg/aur/PKGBUILD.in > pkg/aur/PKGBUILD'
run: 'sed -e "s/%pkgver/${{ env.PKGVER }}/g" -e "s/%sha256sum/${{ env.SHA256 }}/g" pkg/aur/PKGBUILD.in > pkg/aur/PKGBUILD'
- name: Update package
uses: KSXGitHub/github-actions-deploy-aur@v2.7.2
uses: KSXGitHub/github-actions-deploy-aur@v3.0.1
with:
pkgname: python-pyhmmer
pkgbuild: pkg/aur/PKGBUILD
Expand Down

0 comments on commit 4ab2fda

Please sign in to comment.