8.0.0 #47
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 | |
on: | |
release: | |
types: | |
- published | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 version number environment variable | |
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 | |
run: dotnet restore | |
- name: Build solution [Release] | |
run: dotnet build --no-restore -c Release -p:Version=$version | |
- name: Pack solution [Release] | |
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@v4 | |
with: | |
name: Nuget packages | |
path: | | |
out/* | |
- name: Publish Nuget packages to Nuget registry | |
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('out')) { | |
console.log('uploading', file); | |
await github.rest.repos.uploadReleaseAsset({ | |
owner, | |
repo, | |
release_id: ${{ github.event.release.id }}, | |
name: file, | |
data: await fs.readFile(`out/${file}`) | |
}); | |
} |