Skip to content

Merge pull request #16 from AbroGames/2.2.0 #8

Merge pull request #16 from AbroGames/2.2.0

Merge pull request #16 from AbroGames/2.2.0 #8

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: .NET
on:
push:
branches: [ "master" ]
jobs:
call-build:
uses: ./.github/workflows/build.yml
publish:
runs-on: ubuntu-latest
needs: call-build
steps:
- uses: actions/checkout@v4
- name: Pack
run: dotnet pack --output . -p:IncludeSymbols=false -p:IncludeSource=false
- name: Push
run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json