We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e6105d commit 276de2cCopy full SHA for 276de2c
.github/workflows/trigger-builds.yml
@@ -0,0 +1,21 @@
1
+name: Trigger Builds
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ trigger:
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Trigger compile-standalone
12
+ run: |
13
+ gh workflow run compile-standalone.yml --repo ${{ github.repository }}
14
+ env:
15
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16
17
+ - name: Trigger compile-universal
18
19
+ gh workflow run compile-universal.yml --repo ${{ github.repository }}
20
21
0 commit comments