Skip to content

changing priorisation order, making TypeConverter come prior to TypeP… #31

changing priorisation order, making TypeConverter come prior to TypeP…

changing priorisation order, making TypeConverter come prior to TypeP… #31

Workflow file for this run

name: NuGet package publish
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
upload-to-npgk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Setup NuGet.exe for use with actions
uses: NuGet/setup-nuget@v1.0.5
with:
nuget-version: latest
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --framework net7.0 --no-build --verbosity normal
- name: Pack
# CHANGE PACKAGE VERSION - The retarded way
# Change the /p:VERSION=X.X.X part to change the actual package version.
run: dotnet pack --configuration Release /p:VERSION=1.1.0.${{ github.run_number }} --version-suffix ${{ github.sha }}
- name: Upload to NuGet
run: dotnet nuget push ./source/X39.Solutions.PdfTemplate/bin/Release/X39.Solutions.PdfTemplate.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}