Fix typo in AUR workflow (#8049)

This commit is contained in:
Aron de Jong
2022-11-26 17:47:06 +01:00
committed by GitHub
parent 10e8f3169d
commit 076d9f5245

View File

@ -215,14 +215,14 @@ jobs:
- name: Get AUR PKGBUILD
if: github.event_name == 'push' && contains(github.ref, 'ref/tags/')
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
continue-on-error: true
run: |
curl --silent --output PKGBUILD 'https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=unciv-bin'
sed -E -e "s#(_pkgver=).*#\1${{steps.tag.outputs.tag}}#" -e "s#(pkgrel=).*#\10#" -i PKGBUILD
- name: Publish AUR package
if: github.event_name == 'push' && contains(github.ref, 'ref/tags/')
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
continue-on-error: true
uses: Thyrum/github-actions-deploy-aur@master
with: