Skip to content

Commit

Permalink
chore: fix scheduled build for Pharo12
Browse files Browse the repository at this point in the history
Add branch input parameter to base workflow
  • Loading branch information
theseion committed Jul 9, 2023
1 parent 40b758a commit 46096b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
configs:
required: true
type: string
branch:
required: false
default: master
type: string
jobs:
build:
name: "Build ${{ matrix.smalltalk }} ${{ matrix.config }}"
Expand All @@ -20,6 +24,8 @@ jobs:
config: ${{ fromJSON(inputs.configs) }}
steps:
- uses: actions/checkout@v3
with:
ref: ${{ inputs.branch }}
- uses: hpi-swa/setup-smalltalkCI@v1
with:
smalltalk-image: ${{ matrix.smalltalk }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pharo-12.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ jobs:
uses: theseion/fuel/.github/workflows/base.yaml@master
with:
build_targets: '["Pharo64-alpha"]'
configs: '[".default.ston", ".tests.ston"]'
configs: '[".default.ston", ".tests.ston"]'
branch: Pharo12

0 comments on commit 46096b1

Please sign in to comment.