main #21
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: main | |
on: | |
workflow_dispatch: | |
inputs: | |
build_msi: | |
description: 'Build Installer' | |
required: false | |
default: true | |
type: boolean | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
# Use Windows 2019 image since this one has the .NET Framework 4.7.2 pre-installed. | |
# https://github.com/actions/runner-images/blob/main/images/win/Windows2019-Readme.md | |
runs-on: windows-2019 | |
env: | |
# Environment variable which points to the VS 2019 IDE folder. | |
VS_COMMON_IDE_PATH: C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/Common7/IDE | |
steps: | |
# Checkout the code. | |
- uses: actions/checkout@v3 | |
# For the GitVersion to execute successfully, we need the checkout to fetch all gistory for all tags and branches (with fetch-depth: 0). | |
with: | |
fetch-depth: 0 | |
# Use the build-addin action. | |
- uses: ./.github/actions/build-addin | |
with: | |
build_msi: ${{ inputs.build_msi }} |