File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 88 types : [published]
99
1010jobs :
11- build :
11+ nuget :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v3
14+ - uses : actions/checkout@v4
1515 - name : Setup NuGet
1616 uses : NuGet/setup-nuget@v1
1717 with :
2424 - name : Publish NuGet pkg
2525 working-directory : ./nuget
2626 run : nuget push *.nupkg -Source 'https://api.nuget.org/v3/index.json'
27+
28+ release-asset :
29+ runs-on : ubuntu-latest
30+ steps :
31+ - uses : actions/checkout@v4
32+
33+ # steps for building assets
34+ - run : tar -czf /tmp/jwt-cpp-${{ github.event.release.tag_name }}.tar.gz .
35+
36+ - uses : shogo82148/actions-upload-release-asset@v1
37+ with :
38+ upload_url : ${{ github.event.release.upload_url }}
39+ asset_path : /tmp/jwt-cpp-${{ github.event.release.tag_name }}.tar.gz
2740
You can’t perform that action at this time.
0 commit comments