Release 1.2.0 #15
Workflow file for this run
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
on: | |
release: | |
types: [published] | |
paths-ignore: | |
- 'README.md' | |
- 'Tests/**' | |
- 'Examples/**' | |
name: NuGet Package Release | |
permissions: | |
contents: write | |
packages: write | |
actions: read | |
checks: read | |
pull-requests: read | |
env: | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
name: NuGet Push | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
fetch-depth: 1 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '8.0' | |
- name: Install dependencies | |
run: nuget restore | |
- name: Build SDK | |
run: dotnet build Zotapay --configuration Release --no-restore /p:Version=${{github.event.release.tag_name}} | |
- name: Log DIR before | |
run: | | |
ls -Force | |
- name: Package | |
run: | | |
dotnet pack --no-build --configuration Release Zotapay/Zotapay.csproj --output . /p:Version=${{github.event.release.tag_name}} | |
- name: Log DIR after | |
run: | | |
ls -Force | |
- name: Push Package | |
run: dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} |