Skip to content

modgen 2.3.3 / csharp 1.1.2 / tmdgen 1.9.0 / vscode 2.3.2 #396

modgen 2.3.3 / csharp 1.1.2 / tmdgen 1.9.0 / vscode 2.3.2

modgen 2.3.3 / csharp 1.1.2 / tmdgen 1.9.0 / vscode 2.3.2 #396

Workflow file for this run

name: Publish TopModel.*
on:
push:
paths:
- "**/*.csproj"
jobs:
build_and_deploy:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/develop'
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 9.0.x
- name: Pack
run: dotnet pack
- name: Publish
run: dotnet nuget push .nupkg/*.nupkg --api-key ${{secrets.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json --skip-duplicate