Skip to content

Improve comment generation, bump version to 3.9.3 #92

Improve comment generation, bump version to 3.9.3

Improve comment generation, bump version to 3.9.3 #92

Workflow file for this run

name: Build
on:
push:
branches:
- 'main'
paths-ignore:
- '*.md'
- 'CMakeLists.txt'
pull_request:
paths-ignore:
- '*.md'
- 'CMakeLists.txt'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: ./global.json
- name: Pack
run: dotnet pack Alimer.Bindings.SDL.sln --configuration Release
- name: Publish to NuGet
if: github.event_name == 'push'
run: |
dotnet nuget push artifacts/package/release/*.nupkg -k ${{secrets.NUGET_TOKEN}} --skip-duplicate --source https://api.nuget.org/v3/index.json
dotnet nuget push artifacts/package/release/*.snupkg -k ${{secrets.NUGET_TOKEN}} --skip-duplicate --source https://api.nuget.org/v3/index.json