colon-prefixed configs #3
This file contains hidden or 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: Publishes a new version of CafeBazaar.DeveloperApi on the nuget.org | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| configuration: [ Release ] | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.x' | |
| - name: Install Zebble's CLI tools | |
| run: dotnet tool install --global zebble-build | |
| - name: Publish a new CafeBazaar.DeveloperApi package | |
| run: zebble-build update-plugin --api-key ${{secrets.NUGET_API_KEY}} --publish | |
| continue-on-error: true |