Pack and publish NuGet packages #1
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: Pack and publish NuGet packages | |
on: | |
release: | |
types: | |
- published | |
jobs: | |
build-pack: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Install deps | |
run: | | |
cd src/DsbNorge.A3Forms | |
dotnet restore | |
- name: Build A3Forms | |
if: startsWith(github.ref, 'refs/tags/DsbNorge.A3Forms-') | |
run: | | |
cd src/DsbNorge.A3Forms | |
dotnet build --configuration Release --no-restore -p:Deterministic=true -p:BuildNumber=${{ github.run_number }} | |
- name: Pack and publish A3Forms | |
if: startsWith(github.ref, 'refs/tags/DsbNorge.A3Forms-') | |
run: | | |
cd src/DsbNorge.A3Forms | |
dotnet pack DsbNorge.A3Forms.csproj --configuration Release --no-restore --no-build -p:BuildNumber=${{ github.run_number }} -p:Deterministic=true | |
dotnet nuget push bin/Release/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} |