Skip to content

Add axaml to VS. Bump up version number on all plugins to try to help… #827

Add axaml to VS. Bump up version number on all plugins to try to help…

Add axaml to VS. Bump up version number on all plugins to try to help… #827

Workflow file for this run

name: Publish Nuget
on:
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
- run: >
dotnet build CSharpier.slnx -c release -p:TreatWarningsAsErrors=true
publish-nuget:
runs-on: ubuntu-latest
name: publish nuget
needs: test
env:
VERSION_FILE_PATH: Nuget/Build.props
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
- name: Publish CSharpier.Core library on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Src/CSharpier.Core/CSharpier.Core.csproj
TAG_FORMAT: "*"
- name: Publish CSharpier dotnet tool on version change
uses: alirezanet/[email protected]
with:
PACKAGE_NAME: CSharpier
PROJECT_FILE_PATH: Src/CSharpier.Cli/CSharpier.Cli.csproj
TAG_FORMAT: "*"
- name: Publish CSharpier.MsBuild library on version change
uses: alirezanet/[email protected]
with:
PROJECT_FILE_PATH: Src/CSharpier.MsBuild/CSharpier.MsBuild.csproj
TAG_FORMAT: "*"