Bump Swashbuckle.AspNetCore from 6.7.3 to 7.0.0 #262
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: .NET build and test | |
env: | |
CURRENT_VERSION: 3.0.${{ github.run_number }} | |
CURRENT_API_VERSION: 3.0.${{ github.run_number }} | |
LAST_COMMIT_MESSAGE: ${{ github.event.head_commit.message }} | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Test | |
run: dotnet test --no-build --verbosity normal --configuration Release | |
deployRelease: | |
if: ${{ github.ref == 'refs/heads/release' }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: NugetPush | |
env: | |
NUGET_TOKEN_EXISTS: ${{ secrets.NUGET_TOKEN }} | |
if: env.NUGET_TOKEN_EXISTS != '' | |
run: | | |
ls ./PdfAValidator/bin/Release | |
dotnet nuget push ./PdfAValidator/bin/Release/*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json | |
- name: Github Release | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ github.TOKEN }} | |
if: env.GITHUB_TOKEN != '' | |
run: | | |
gh release create ${{env.CURRENT_VERSION}} ./PdfAValidator/bin/Release/*.*nupkg --generate-notes | |
deployTest: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: NugetPush | |
env: | |
NUGET_TOKEN_EXISTS: ${{ secrets.NUGET_TEST_TOKEN }} | |
if: env.NUGET_TOKEN_EXISTS != '' | |
run: | | |
ls ./PdfAValidator/bin/Release | |
dotnet nuget push ./PdfAValidator/bin/Release/*.nupkg --skip-duplicate --api-key ${{secrets.NUGET_TEST_TOKEN}} --source https://apiint.nugettest.org/v3/index.json | |
- name: Github Prerelease | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ github.TOKEN }} | |
if: env.GITHUB_TOKEN != '' | |
run: | | |
gh release create ${{env.CURRENT_VERSION}} ./PdfAValidator/bin/Release/*.*nupkg --prerelease --generate-notes | |
deployAzure: | |
if: ${{ github.ref == 'refs/heads/release' || github.ref == 'refs/heads/AzureAppPublishUsingGithubActions'}} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --configuration Release --no-restore | |
- name: Publish | |
run: dotnet publish ./PdfAValidatorWebApi/PdfAValidatorWebApi.csproj --configuration Release -o ./Publish | |
- uses: azure/webapps-deploy@v3 | |
with: | |
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} | |
package: "./Publish" |