Skip to content

Commit 276de2c

Browse files
committed
[0.8.7] add build script
1 parent 9e6105d commit 276de2c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
19+
gh workflow run compile-universal.yml --repo ${{ github.repository }}
20+
env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)