Skip to content

Added saving of model options to solve issue of model-code convention… #66

Added saving of model options to solve issue of model-code convention…

Added saving of model options to solve issue of model-code convention… #66

Workflow file for this run

name: feature
on:
workflow_dispatch:
inputs:
build_msi:
description: 'Build Installer'
required: false
default: false
type: boolean
push:
branches:
- feature/*
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 }}