Rename Artemis bq- AMQP properties to JMS-legal bq_ underscores #1
Workflow file for this run
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: Release | |
| on: | |
| push: | |
| tags: [ "v*" ] | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "8.0.x" | |
| - name: Test | |
| run: dotnet test -c Release | |
| - name: Pack | |
| run: dotnet pack src/BabelQueue.Artemis/BabelQueue.Artemis.csproj -c Release -o artifacts | |
| - name: Publish to NuGet | |
| run: > | |
| dotnet nuget push "artifacts/*.nupkg" | |
| --api-key "${{ secrets.NUGET_API_KEY }}" | |
| --source https://api.nuget.org/v3/index.json | |
| --skip-duplicate | |
| - name: Create GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| generate_release_notes: true |