Skip to content

updated

updated #11

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build, test, sign and package a WPF or Windows Forms desktop application
# built on .NET Core.
# To learn how to migrate your existing application to .NET Core,
# refer to https://docs.microsoft.com/en-us/dotnet/desktop-wpf/migration/convert-project-from-net-framework
#
# To configure this workflow:
#
# 1. Configure environment variables
# GitHub sets default environment variables for every workflow run.
# Replace the variables relative to your project in the "env" section below.
#
# 2. Signing
# Generate a signing certificate in the Windows Application
# Packaging Project or add an existing signing certificate to the project.
# Next, use PowerShell to encode the .pfx file using Base64 encoding
# by running the following Powershell script to generate the output string:
#
# $pfx_cert = Get-Content '.\SigningCertificate.pfx' -Encoding Byte
# [System.Convert]::ToBase64String($pfx_cert) | Out-File 'SigningCertificate_Encoded.txt'
#
# Open the output file, SigningCertificate_Encoded.txt, and copy the
# string inside. Then, add the string to the repo as a GitHub secret
# and name it "Base64_Encoded_Pfx."
# For more information on how to configure your signing certificate for
# this workflow, refer to https://github.com/microsoft/github-actions-for-desktop-apps#signing
#
# Finally, add the signing certificate password to the repo as a secret and name it "Pfx_Key".
# See "Build the Windows Application Packaging project" below to see how the secret is used.
#
# For more information on GitHub Actions, refer to https://github.com/features/actions
# For a complete CI/CD sample to get started with GitHub Action workflows for Desktop Applications,
# refer to https://github.com/microsoft/github-actions-for-desktop-apps
name: .NET Build, Test and Publish
on:
push:
branches: ["main"]
tags: ["v*"] # only trigger the publish steps on tags
pull_request:
branches: ["main"]
env:
SOLUTION_PATH: SimpleMapper/SimpleMapper.sln
TEST_PROJECT_PATH: SimpleMapper/UnitTestXUnitNet6/UnitTestXUnitNet6.csproj
PACKAGE_PROJECT_PATH: SimpleMapper/SimpleMapper/SimpleMapper.csproj
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}/output
NUGET_SOURCE_URL: https://api.nuget.org/v3/index.json
jobs:
build-test-pack:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ${{ env.SOLUTION_PATH }}
- name: Build
run: dotnet build ${{ env.SOLUTION_PATH }} --configuration Release --no-restore
- name: Test with xUnit
continue-on-error: true
run: |
dotnet test ${{ env.TEST_PROJECT_PATH }} \
--configuration Release \
--no-build \
--logger "console;verbosity=detailed" \
--logger "trx;LogFileName=test-results.trx" \
--collect:"XPlat Code Coverage" \
--results-directory ./test-results
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: |
./test-results/*.trx
./test-results/**/coverage.cobertura.xml
if-no-files-found: warn
- name: Debug paths
run: |
echo "Solution path: ${{ env.SOLUTION_PATH }}"
echo "Package project path: ${{ env.PACKAGE_PROJECT_PATH }}"
echo "Package output directory: ${{ env.PACKAGE_OUTPUT_DIRECTORY }}"
ls -la SimpleMapper/SimpleMapper/ || echo "Directory not found"
- name: Pack
run: dotnet pack ${{ env.PACKAGE_PROJECT_PATH }} \
--configuration Release \
--output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
- name: Upload package artifacts
uses: actions/upload-artifact@v4
with:
name: nuget-package
path: ${{ env.PACKAGE_OUTPUT_DIRECTORY }}/*.nupkg
if-no-files-found: error
publish-nuget:
needs: build-test-pack
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v') # only on tag pushes
steps:
- name: Download package artifacts
uses: actions/download-artifact@v4
with:
name: nuget-package
path: ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Push to NuGet.org
env:
# this secret must be defined in your repo's Settings → Secrets → Actions
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: |
dotnet nuget push \
"${{ env.PACKAGE_OUTPUT_DIRECTORY }}/*.nupkg" \
--api-key $NUGET_API_KEY \
--source ${{ env.NUGET_SOURCE_URL }} \
--skip-duplicate