Fix typo #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish nuget packages | |
on: | |
push: | |
paths: | |
- 'BattleBitAPI.Addons.CommandHandler/**.**' | |
- 'BattleBitAPI.Addons.Common/**.**' | |
- 'BattleBitAPI.Addons.EventHandler/**.**' | |
workflow_dispatch: | |
jobs: | |
publish-nuget-packages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Dotnet Setup | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.x | |
- name: Restore | |
run: dotnet restore | |
- name: Build | |
run: dotnet build -c Release --no-restore | |
- name: Pack | |
if: "contains(github.event.head_commit.message, 'stable')" | |
run: | | |
dotnet pack BattleBitAPI.Addons.CommandHandler -c Release --no-build | |
dotnet pack BattleBitAPI.Addons.Common -c Release --no-build | |
dotnet pack BattleBitAPI.Addons.EventHandler -c Release --no-build | |
- name: Publish | |
if: "contains(github.event.head_commit.message, 'stable')" | |
run: | | |
dotnet nuget push BattleBitAPI.Addons.CommandHandler/**.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} -n --skip-duplicate | |
dotnet nuget push BattleBitAPI.Addons.Common/**.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} -n --skip-duplicate | |
dotnet nuget push BattleBitAPI.Addons.EventHandler/**.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} -n --skip-duplicate |