Skip to content

Update version to 0.2.4.0 (#13) #10

Update version to 0.2.4.0 (#13)

Update version to 0.2.4.0 (#13) #10

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build solution
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore dotNET/PDFClown.sln
- name: Build
run: dotnet build dotNET/PDFClown.sln --no-restore /p:PackageOutputPath=artifacts /p:ContinuousIntegrationBuild=true
- name: Upload nuget package artifact
uses: actions/upload-artifact@v3
with:
name: nuget-package
path: dotNET/pdfclown.lib/artifacts