Skip to content

Commit

Permalink
Merge pull request #3655 from architecture-building-systems/custom-gu…
Browse files Browse the repository at this point in the history
…i-build-workflow

Update setup_build.yml to support GUI branch as input
  • Loading branch information
reyery authored Sep 6, 2024
2 parents f9a3fbb + 352a56d commit 81bc3fc
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/setup_build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: Build CEA Setup

on:
workflow_dispatch
workflow_dispatch:
inputs:
gui-branch:
description: 'Branch of GUI repo to build with'
required: true
type: string
default: 'master'

jobs:
build_win_setup:
Expand Down Expand Up @@ -59,6 +65,8 @@ jobs:
with:
path: gui
repository: architecture-building-systems/CityEnergyAnalyst-GUI
ref: ${{ inputs.gui-branch }}
fetch-depth: 0

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -120,6 +128,8 @@ jobs:
with:
path: gui
repository: architecture-building-systems/CityEnergyAnalyst-GUI
ref: ${{ inputs.gui-branch }}
fetch-depth: 0

- name: Fetch micromamba
run: |
Expand Down

0 comments on commit 81bc3fc

Please sign in to comment.