We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b7750 commit 8554a21Copy full SHA for 8554a21
.github/workflows/publish-aur.yaml
@@ -23,10 +23,10 @@ jobs:
23
run: |
24
mkdir -p ./aur/${{ env.PACKAGE_NAME }}/
25
# Strip the leading "v" from the version
26
- VERSION_NUMBER=${{ env.VERSION }} # Using string replacement in YAML
+ VERSION_NUMBER=${{ env.VERSION }}
27
VERSION_NUMBER=${VERSION_NUMBER#v} # Strip 'v' at the start
28
echo "Version number for PKGBUILD is $VERSION_NUMBER"
29
- cat > ./aur/${{ env.PACKAGE_NAME }}/PKGBUILD << EOF
+ cat > ./aur/${{ env.PACKAGE_NAME }}/PKGBUILD << 'EOF'
30
pkgname=${{ env.PACKAGE_NAME }}
31
pkgver=$VERSION_NUMBER
32
pkgrel=1
0 commit comments