Skip to content

Commit

Permalink
Update msbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aliakseis committed Oct 11, 2024
1 parent b586e39 commit ff751a9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,17 @@ jobs:
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

- name: Install MSIX Packaging Tool
run: choco install msix-packaging

- name: Generate .msix package
run: |
mkdir -p ./x64/Release/Appx
MakeAppx.exe pack /d ./x64/Release /p ./x64/Release/Appx/WellTrajectoryCalculator.msix
- name: Upload .msix package
uses: actions/upload-artifact@v4
with:
name: msix-package
path: ./x64/Release/Appx/WellTrajectoryCalculator.msix

0 comments on commit ff751a9

Please sign in to comment.