Skip to content

Commit

Permalink
Set up continuous integration for WinUI 3 app
Browse files Browse the repository at this point in the history
  • Loading branch information
lknknm authored Aug 27, 2023
1 parent 161dbc6 commit 013d1fb
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# This workflow will build and publish a WinUI 3 unpackaged desktop application
# built on .NET.

name: WinUI 3 unpackaged app

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

build:

strategy:
matrix:
configuration: [Release]
platform: [x64, x86]

runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on

env:
Solution_Name: REZ.sln # Replace with your solution name, i.e. App1.sln.

steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v1.0.2

# 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: ${{ matrix.configuration }}

# Create the app by building and publishing the project
- name: Create the app
run: msbuild $env:Solution_Name /t:Publish /p:Configuration=$env:Configuration /p:Platform=$env:Platform
env:
Configuration: ${{ matrix.configuration }}
Platform: ${{ matrix.platform }}

# Upload the app
- name: Upload app
uses: actions/upload-artifact@v2
with:
name: Upload app
path: ${{ env.Solution_Name }}\\bin

0 comments on commit 013d1fb

Please sign in to comment.