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
name: Publish release to Nuget registry | |
on: | |
release: | |
types: | |
- published | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Check github.ref starts with 'refs/tags/' | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
run: | | |
echo Error! github.ref does not start with 'refs/tags' | |
echo github.ref: ${{ github.ref }} | |
exit 1 | |
- name: Set release version number | |
env: | |
github_ref: ${{ github.ref }} | |
run: | | |
version="${github_ref:10}" | |
echo version=$version | |
echo "version=$version" >> $GITHUB_ENV | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
source-url: https://api.nuget.org/v3/index.json | |
env: | |
NUGET_AUTH_TOKEN: ${{secrets.NUGET_AUTH_TOKEN}} | |
- name: Install dependencies | |
working-directory: src | |
run: dotnet restore | |
- name: Build solution [Release] | |
working-directory: src | |
run: dotnet build --no-restore -c Release -p:Version=$version | |
- name: Pack solution [Release] | |
working-directory: src | |
run: dotnet pack --no-restore --no-build -c Release -p:Version=$version -o out | |
- name: Upload Nuget packages as workflow artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Nuget packages | |
path: | | |
src/out/* | |
- name: Publish Nuget packages to Nuget registry | |
working-directory: src | |
run: dotnet nuget push "out/*" -k ${{secrets.NUGET_AUTH_TOKEN}} | |
- name: Upload Nuget packages as release artifacts | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
console.log('environment', process.versions); | |
const fs = require('fs').promises; | |
const { repo: { owner, repo }, sha } = context; | |
for (let file of await fs.readdir('src/out')) { | |
console.log('uploading', file); | |
await github.rest.repos.uploadReleaseAsset({ | |
owner, | |
repo, | |
release_id: ${{ github.event.release.id }}, | |
name: file, | |
data: await fs.readFile(`src/out/${file}`) | |
}); | |
} |