build(deps): bump benchmarkdotnet from 0.13.4 to 0.13.12 in /src #592
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
types: [opened, synchronize, reopened, closed] | |
branches: [ main ] | |
env: | |
configuration: Release | |
productNamespacePrefix: "Pharmacist" | |
jobs: | |
build: | |
runs-on: windows-latest | |
outputs: | |
nbgv: ${{ steps.nbgv.outputs.SemVer2 }} | |
steps: | |
- name: Get Current Visual Studio Information | |
shell: bash | |
run: | | |
dotnet tool update -g dotnet-vs | |
echo "## About RELEASE ##" | |
vs where release | |
- name: Update Visual Studio Latest Release | |
shell: bash | |
run: | | |
echo "## Update RELEASE ##" | |
vs update release Enterprise | |
vs modify release Enterprise +mobile +desktop +uwp +web | |
echo "## About RELEASE Updated ##" | |
vs where release | |
echo "##vso[task.prependpath]$(vs where release --prop=InstallationPath)\MSBuild\Current\Bin" | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
lfs: true | |
- name: Install .NET 6 & .NET 7 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
- name: Install DotNet workloads | |
shell: bash | |
run: | | |
dotnet workload install android ios tvos macos maui maccatalyst | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
with: | |
vs-prerelease: true | |
- name: NBGV | |
id: nbgv | |
uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: NuGet Restore | |
run: dotnet restore | |
working-directory: src | |
- name: Build | |
run: msbuild /t:build,pack /p:NoPackageAnalysis=true /verbosity:minimal /p:Configuration=${{ env.configuration }} | |
working-directory: src | |
- name: Run Unit Tests and Generate Coverage | |
uses: glennawatson/[email protected] | |
with: | |
project-files: '**/*Tests*.csproj' | |
no-build: true | |
exclude-filter: '[${{env.productNamespacePrefix}}.*.Tests.*]*' | |
include-filter: '[${{env.productNamespacePrefix}}*]*' | |
output-format: cobertura | |
configuration: ${{ env.configuration }} | |
- name: Upload Code Coverage | |
uses: codecov/codecov-action@v3 | |
- name: Create NuGet Artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: nuget | |
path: '**/*.nupkg' | |
release: | |
runs-on: ubuntu-latest | |
needs: build | |
if: contains(github.event.pull_request.labels.*.name, 'release') && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Download NuGet Packages | |
uses: actions/download-artifact@v2 | |
with: | |
name: nuget | |
- name: Save SignClient Configuration | |
run: 'echo "$SIGN_CLIENT_CONFIG" > SignPackages.json' | |
shell: bash | |
env: | |
SIGN_CLIENT_CONFIG: ${{secrets.SIGN_CLIENT_CONFIG}} | |
- name: Sign NuGet Packages | |
uses: glennawatson/signclient@v1 | |
with: | |
input-files: '**/*.nupkg' | |
sign-client-secret: ${{ secrets.SIGN_CLIENT_SECRET }} | |
sign-client-user: ${{ secrets.SIGN_CLIENT_USER_ID }} | |
project-name: reactiveui | |
description: reactiveui | |
config-file: SignPackages.json | |
- name: Changelog | |
uses: glennawatson/ChangeLog@v1 | |
id: changelog | |
- name: Create Release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ needs.build.outputs.nbgv }} | |
release_name: ${{ needs.build.outputs.nbgv }} | |
body: | | |
${{ steps.changelog.outputs.commitLog }} | |
- name: NuGet Push | |
env: | |
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_API_KEY }} | |
SOURCE_URL: https://api.nuget.org/v3/index.json | |
run: | | |
dotnet nuget push -s ${{ env.SOURCE_URL }} -k ${{ env.NUGET_AUTH_TOKEN }} **/*.nupkg |