forked from Thalhammer/jwt-cpp
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload archives with source code on release (Thalhammer#324)
* upload tar.gz for new releases * revert name to manually trigger it * write to separate path * Update and rename nuget.yml to release.yml * disable nuget for testing * add a zip as well * error handling * Update release.yml * simple conditional trying https://unix.stackexchange.com/a/344207 * Update release.yml * back to basics * exclude .git folder * fix order for args * protect glob * fix order * remove remove testing code
- Loading branch information
1 parent
8ed685e
commit 59cb1e6
Showing
2 changed files
with
44 additions
and
27 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Nuget CD | ||
|
||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#release | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
nuget: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup NuGet | ||
uses: NuGet/setup-nuget@v1 | ||
with: | ||
nuget-api-key: ${{ secrets.nuget_api_key }} | ||
|
||
- name: Create NuGet pkg | ||
working-directory: ./nuget | ||
run: nuget pack jwt-cpp.nuspec | ||
|
||
- name: Publish NuGet pkg | ||
working-directory: ./nuget | ||
run: nuget push *.nupkg -Source 'https://api.nuget.org/v3/index.json' | ||
|
||
release-asset: | ||
if: github.event_name != 'workflow_dispatch' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- run: tar --exclude='./.git' -vczf /tmp/jwt-cpp-${{ github.event.release.tag_name }}.tar.gz . | ||
- uses: shogo82148/actions-upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: /tmp/jwt-cpp-${{ github.event.release.tag_name }}.tar.gz | ||
|
||
- run: zip -x './.git/*' -r /tmp/jwt-cpp-${{ github.event.release.tag_name }}.zip . | ||
- uses: shogo82148/actions-upload-release-asset@v1 | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: /tmp/jwt-cpp-${{ github.event.release.tag_name }}.zip |