Bump Azure.Storage.Queues from 12.19.0 to 12.19.1 (#54) #52
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: Merge Pull Requests into 'main' | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- '.editorconfig' | |
- 'ReadMe.md' | |
- 'ChangeLog.md' | |
- '.github/workflows/PullRequest.yml' | |
- '.github/workflows/Release.yml' | |
permissions: | |
packages: write | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build_and_create_a_nuget: | |
name: Build and create a NuGet (RELEASE) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build version prefix/suffix | |
run: | | |
echo "VERSION_PREFIX=$(( ${{ github.run_number }} )).0.0" >> $GITHUB_ENV | |
echo "VERSION_SUFFIX=beta" >> $GITHUB_ENV | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
- run: dotnet restore --verbosity minimal | |
- run: dotnet build --configuration Release -p:ContinuousIntegrationBuild=true -p:DebugType=Embedded -p:VersionPrefix=$VERSION_PREFIX --version-suffix $VERSION_SUFFIX | |
- run: dotnet test --configuration Release --no-build | |
- run: dotnet pack --configuration Release --no-build --output ./artifacts -p:DebugType=Embedded -p:VersionPrefix=$VERSION_PREFIX --version-suffix $VERSION_SUFFIX | |
- name: Publish artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NuGetPackage.${{ env.VERSION_PREFIX }}-${{ env.VERSION_SUFFIX }} | |
path: ./artifacts/ | |
- name: Publish to GPR | |
run: | | |
dotnet nuget push "./artifacts/*.nupkg" \ | |
--no-symbols \ | |
--api-key ${{ secrets.GITHUB_TOKEN }} \ | |
--source https://nuget.pkg.github.com/${{ github.repository_owner }} | |
test: | |
name: Build and Test with CodeCov (DEBUG) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
- run: dotnet restore --verbosity minimal | |
- run: dotnet build --configuration Debug | |
- run: dotnet test --configuration Debug --verbosity minimal --no-build --collect:"XPlat Code Coverage" --results-directory "./.codecoverage" | |
- name: Code coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
directory: "./.codecoverage" | |
fail_ci_if_error: true |