Update dotnet.yml #255
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
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: Relase build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-2022 | |
name: Release build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Decrypt PFX File | |
run: | | |
echo "${{ secrets.WINDOWS_PFX_FILE }}" > cert.pfx.asc | |
certutil -decode cert.pfx.asc cert.pfx | |
- name: Add Cert to Store | |
run: certutil -user -f -v -q -p ${{ secrets.WINDOWS_PFX_PASSWORD }} -importpfx cert.pfx NoRoot | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 8.x | |
- name: Install MAUI Workload | |
run: dotnet workload install maui --ignore-failed-sources | |
- name: Build Windows package | |
run: dotnet publish ACDCs.Application/ACDCs.Application.csproj -c Release -f net7.0-windows10.0.19041.0 -p:PublishReadyToRun=false -p:PackageCertificateThumbprint="${{ secrets.WINDOWS_PFX_THUMBPRINT }}" | |
- name: Upload Windows Artifact | |
uses: actions/upload-artifact@v3.1.0 | |
with: | |
name: acdcs-windows-build | |
path: ACDCs.Application/bin/Release/net7.0-windows10.0.19041.0/win10-x64/AppPackages/ACDCs_1.154.0.0_Test/*.msix | |
- name: Build Android package | |
run: dotnet publish ACDCs.Application/ACDCs.Application.csproj -c Release -f net7.0-android | |
- name: Upload Android Artifact | |
uses: actions/upload-artifact@v3.1.0 | |
with: | |
name: acdcs-android-build | |
path: ACDCs.Application/bin/Release/net7.0-android/*Signed.a* | |
env: | |
DOTNET_NOLOGO: true # Disable the .NET logo | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Disable the .NET first time experience | |
DOTNET_CLI_TELEMETRY_OPTOUT: true # Disable sending .NET CLI telemetry |