-
Notifications
You must be signed in to change notification settings - Fork 3
80 lines (67 loc) · 2.25 KB
/
build-and-package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: build and package
on:
push:
branches: [muxc]
pull_request:
branches: [muxc]
paths:
- '.github/workflows/build-and-package.yml'
- 'CoreAppUWP**'
workflow_dispatch:
env:
DOTNET_VERSION: '8.0.x' # The .NET SDK version to use
jobs:
build-and-test:
name: build-and-package
runs-on: windows-latest
env:
Solution_Name: CoreAppUWP.sln
Project_Directory: CoreAppUWP
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core App workload
- name: Install .NET Core App
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: x64
- name: Setup NuGet.exe
uses: NuGet/setup-nuget@v2
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: Release
- name: Nuget restore
run: nuget restore $env:Solution_Name
# Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package
run: msbuild $env:Solution_Name `
/p:AppxBundlePlatforms="$env:Appx_Bundle_Platforms" `
/p:Configuration=$env:Configuration `
/p:Platform=$env:Platform `
/p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode `
/p:AppxBundle=$env:Appx_Bundle `
/p:AppxPackageDir="$env:Appx_Package_Dir" `
/p:GenerateAppxPackageOnBuild=true `
/p:AppxPackageSigningEnabled=false
env:
Appx_Bundle: Always
Appx_Bundle_Platforms: x86|x64|ARM64
Appx_Package_Build_Mode: SideloadOnly
Appx_Package_Dir: AppxPackages\
Configuration: Release
Platform: 'x64'
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: MSIX Package
path: CoreAppUWP/AppxPackages/**