Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
Browse files Browse the repository at this point in the history
… fixup! fixup! fixup! fixup! fixup! fixup! allow defining a custom site
  • Loading branch information
herbetom committed Nov 4, 2023
1 parent 0331a20 commit 374c27a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-gluon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ on:
types: [opened, synchronize, reopened]
workflow_dispatch:
inputs:
site:
site_url:
description: 'Gluon Site Repo to use'
type: string
site_branch:
description: 'Gluon Site Repo to use'
type: string
default: ${{ vars.GLUON_SITE_URL }}

permissions:
contents: read
Expand Down Expand Up @@ -53,8 +55,8 @@ jobs:
- name: Checkout Site
run: contrib/actions/checkout-site.sh
env:
GLUON_SITE_URL: ${{ vars.GLUON_SITE_URL }}
GLUON_SITE_BRANCH: ${{ vars.GLUON_SITE_BRANCH }}
GLUON_SITE_URL: ${{ inputs.site_url || vars.GLUON_SITE_URL }}
GLUON_SITE_BRANCH: ${{ inputs.site_branch || vars.GLUON_SITE_BRANCH }}

- name: Build
run: contrib/actions/run-build.sh ${{ matrix.target }}
Expand Down

0 comments on commit 374c27a

Please sign in to comment.