Skip to content

Commit

Permalink
ci: fix missing env var when building tarball
Browse files Browse the repository at this point in the history
Fixes #1671
  • Loading branch information
jcelerier committed Jan 12, 2025
1 parent d65315d commit 7d8c43f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
force_push_tag: true

- name: Build
run: ./ci/tarball.build.sh
run:
export GITTAGNOV=$(echo "$GITHUB_REF" | sed "s/.*\///;s/^v//")
./ci/tarball.build.sh
env:
GPG_SIGN_PUBKEY: ${{ secrets.GPG_SIGN_PUBKEY }}
GPG_SIGN_PRIVKEY: ${{ secrets.GPG_SIGN_PRIVKEY }}
Expand Down

0 comments on commit 7d8c43f

Please sign in to comment.