Skip to content

Build and Publish WinUI3 App #19

Build and Publish WinUI3 App

Build and Publish WinUI3 App #19

name: Build and Publish WinUI3 App
on:
workflow_dispatch:
inputs:
version:
description: 'Version number (e.g., 1.0.0.1)'
required: true
type: string
prerelease:
description: 'If pre_release'
required: true
type: boolean
jobs:
build:
uses: ./.github/workflows/build.yml
with:
version: ${{ github.event.inputs.version }}
publish:
needs: build
uses: ./.github/workflows/publish.yml
with:
artifact-name: ${{ needs.build.outputs.artifact-name }}