Create release #60
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: Create release | |
# On push to master branch. i.e. when we merge a PR. | |
on: | |
push: | |
branches: [ master, VFL/WI00764279/NCN-Diagrams-Move-WTG.Blazor.Diagrams-to-nuget.org ] | |
tags: | |
- "v*" | |
workflow_dispatch: | |
env: | |
NUGET_DIR: '${{ github.workspace }}/nuget' | |
jobs: | |
publish-pkg: | |
name: Build - Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get Version | |
id: version | |
uses: battila7/get-version-action@v2 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
3.1.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Pack Blazor.Diagrams | |
working-directory: src/Blazor.Diagrams | |
run: 'dotnet pack --no-restore --no-build -p:GeneratePackageOnBuild=false --configuration Release -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.NUGET_DIR }}' | |
- name: Push NuGet Package to NuGet Gallery | |
run: | | |
nuget setapikey ${{ secrets.NUGET_API_KEY }} | |
nuget push ${{ env.NUGET_DIR }}/WTG.Z.Blazor.Diagrams.${{ steps.version.outputs.version-without-v }}.nupkg -Source https://api.nuget.org/v3/index.json |