Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorriegler committed Jul 2, 2024
1 parent a1614a1 commit 913c99c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-aur.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Set VERSION_NUMBER
run: |
PKGVER=${{ env.VERSION }}
PKGVER=${PKGVER#v} # Strip 'v' at the start
echo "PKGVER=${PKGVER}" >> $GITHUB_ENV
PKGVER="${{ env.VERSION }}"
PKGVER="${PKGVER#v}" # Strip 'v' at the start
echo "PKGVER=$PKGVER" >> $GITHUB_ENV
- name: Create PKGBUILD
run: |
Expand Down

0 comments on commit 913c99c

Please sign in to comment.