Ignore public flowchart to fix json overflow #16
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: "Deploy BfevLibrary to NuGet" | |
on: | |
push: | |
tags: | |
- "v*" | |
env: | |
nuget: "https://api.nuget.org/v3/index.json" | |
jobs: | |
deploy: | |
name: "Deploy BfevLibrary" | |
runs-on: ubuntu-latest | |
env: | |
csproj: "BfevLibrary" | |
build: "${{ github.workspace }}/build" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: "Install DotNET" | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: "7.0.x" | |
- name: "Restore packages" | |
run: dotnet restore src/${{ env.csproj }}.csproj | |
- name: "Build project" | |
run: dotnet build src/${{ env.csproj }}.csproj --no-restore -c Release | |
- name: "Get Version" | |
id: version | |
uses: battila7/get-version-action@v2 | |
- name: "Pack project" | |
run: dotnet pack src/${{ env.csproj }}.csproj --no-restore -c Release -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.build }} | |
- name: "Push package" | |
run: dotnet nuget push ${{ env.build }}/*.nupkg -k ${{ secrets.nuget_auth }} -s ${{ env.nuget }} |