Bump actions/checkout from 3 to 4 #162
Workflow file for this run
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: 2.4.${{ github.run_number }} | |
CURRENT_API_VERSION: 2.5.${{ 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@v3 | |
with: | |
dotnet-version: 6.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@v3 | |
with: | |
dotnet-version: 6.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 | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: ${{ env.CURRENT_VERSION }} | |
prerelease: false | |
title: "Release Build" | |
files: | | |
./PdfAValidator/bin/Release/*.nupkg | |
./PdfAValidator/bin/Release/*.snupkg | |
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@v3 | |
with: | |
dotnet-version: 6.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 | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "latest-prerelease" | |
prerelease: true | |
title: "Prerelease Build" | |
files: | | |
./PdfAValidator/bin/Release/*.nupkg | |
./PdfAValidator/bin/Release/*.snupkg | |
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@v3 | |
with: | |
dotnet-version: 6.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@v2 | |
with: | |
publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} | |
package: "./Publish" |