Skip to content

Commit 1caec89

Browse files
committed
Try to get conditional trigger going
1 parent 34d6f01 commit 1caec89

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/dawn-check.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,11 @@ jobs:
8383
echo "Uploading to release: $TAG"
8484
echo "needs_build=true" >> $GITHUB_OUTPUT
8585
fi
86+
87+
build-dawn:
88+
if: ${{ needs.check-dawn.outputs.needs_build == 'true' }}
89+
needs: check-dawn
90+
uses: ./.github/workflows/dawn.yaml
91+
with:
92+
channel: ${{ github.event.inputs.channel }}
93+
config: ${{ github.event.inputs.config }}

.github/workflows/dawn.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ on:
4646
options:
4747
- release
4848
- debug
49+
secrets:
50+
GITHUB_TOKEN:
51+
required: true
4952

5053
jobs:
5154
get-dawn-version:

0 commit comments

Comments
 (0)