Skip to content

Commit

Permalink
Upload archives with source code on release (Thalhammer#324)
Browse files Browse the repository at this point in the history
* 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
prince-chrismc authored Jan 23, 2024
1 parent 8ed685e commit 59cb1e6
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/nuget.yml

This file was deleted.

44 changes: 44 additions & 0 deletions .github/workflows/release.yml
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

0 comments on commit 59cb1e6

Please sign in to comment.