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 94adcd9 commit f155b50Copy full SHA for f155b50
.github/workflows/release.yml
@@ -29,16 +29,14 @@ jobs:
29
release-asset:
30
if: github.event_name != 'workflow_dispatch'
31
runs-on: ubuntu-latest
32
- env:
33
- NAME: jwt-cpp-${{ github.event.release.tag_name }}
34
steps:
35
- uses: actions/checkout@v4
36
37
- run: tar --exclude='./.git' -vczf /tmp/jwt-cpp-${{ github.event.release.tag_name }}.tar.gz .
38
- uses: shogo82148/actions-upload-release-asset@v1
39
with:
40
upload_url: ${{ github.event.release.upload_url }}
41
- asset_path: /tmp/$NAME.tar.gz
+ asset_path: /tmp/jwt-cpp-${{ github.event.release.tag_name }}.tar.gz
42
43
- run: zip -x './.git/*' -r /tmp/jwt-cpp-${{ github.event.release.tag_name }}.zip .
44
0 commit comments