We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa16dde commit 9418d00Copy full SHA for 9418d00
2 files changed
.github/workflows/install.yml
@@ -53,7 +53,7 @@ jobs:
53
container:
54
image: opensuse/tumbleweed
55
steps:
56
- - run: zypper --non-interactive install wget sudo tar gzip xargs
+ - run: zypper --non-interactive install wget sudo tar gzip
57
- uses: actions/checkout@v3
58
- run: ./install.sh
59
- run: |
.github/workflows/release.yml
@@ -96,7 +96,7 @@ jobs:
96
97
- name: Derive version values from tag
98
run: |
99
- echo "PKGVER=$(echo '${{ env.TAG }}' | sed 's/^v//')" >> $GITHUB_ENV
+ echo "PKGVER=$(echo "$TAG" | sed 's/^v//')" >> $GITHUB_ENV
100
PKGREL=$(curl -s "https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=gpt-cli" | grep ^pkgrel= | cut -d "=" -f 2)
101
echo "PKGREL=$((PKGREL + 1))" >> $GITHUB_ENV
102
0 commit comments