⬆️ 0.3.1 version increment #60
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nuget/setup-nuget@v2 | |
with: | |
nuget-version: 'latest' | |
- run: nuget restore FlashCom.sln | |
- name: Enable Developer Command Prompt | |
uses: ilammy/msvc-dev-cmd@v1 | |
- name: Build | |
run: msbuild FlashCom.sln /p:ProjectName="FlashCom" /p:Configuration="Release" /p:Platform="x64" /p:AppxBundle="Always" /p:AppxPackageSigningEnabled=true /p:PackageCertificateThumbprint="feedcf964fdcb3e04e4b27f86536cb269e40f873" /p:PackageCertificateKeyFile="Packaging_TemporaryKey.pfx" /p:UapAppxPackageBuildMode="Sideload" /p:AppxBundlePlatforms="x64|ARM64" /p:AppxPackageDir="AppPackages" | |
- name: Upload App Package Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FlashCom_AppPackage | |
path: | | |
src/Packaging/AppPackages/**/* | |
!src/Packaging/AppPackages/*.msixupload | |
- name: Upload x64 Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FlashCom_x64 | |
path: | | |
build/bin/x64/Release/FlashCom/* | |
!build/bin/x64/Release/FlashCom/*.pdb | |
- name: Upload ARM64 Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: FlashCom_ARM64 | |
path: | | |
build/bin/ARM64/Release/FlashCom/* | |
!build/bin/ARM64/Release/FlashCom/*.pdb |