Skip to content

Bump dotnet-reportgenerator-globaltool from 5.3.8 to 5.3.9 #22

Bump dotnet-reportgenerator-globaltool from 5.3.8 to 5.3.9

Bump dotnet-reportgenerator-globaltool from 5.3.8 to 5.3.9 #22

name: Build and release
on:
# Dev
workflow_dispatch:
pull_request:
push:
# Preview
branches: [ main ]
# Stable
tags: [ "v*" ]
jobs:
build:
name: "Build"
uses: ./.github/workflows/build.yml
with:
dotnet_version: '8.0.100'
# Preview release on push to main only
# Stable release on version tag push only
deploy:
name: "Deploy"
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
needs: build
uses: ./.github/workflows/deploy.yml
with:
dotnet_version: '8.0.100'
azure_nuget_feed: 'https://pkgs.dev.azure.com/benito356/NetDevOpsTest/_packaging/Example-Preview/nuget/v3/index.json'
secrets:
nuget_preview_token: "az" # Dummy values as we use Azure DevOps only - Replace with your token for nuget.org
nuget_stable_token: "az" # Dummy values as we use Azure DevOps only - Replace with your token for nuget.org
azure_nuget_token: ${{ secrets.AZURE_NUGET_TOKEN }}