-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01d9286
commit 65c935a
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Test Release Build | ||
|
||
on: | ||
workflow_dispatch: # Manual trigger | ||
|
||
jobs: | ||
trigger-builds: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Trigger MacOS Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: MacOS Nightly Build | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
inputs: '{"event_name": "schedule"}' | ||
|
||
- name: Trigger Windows Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: Windows Nightly Build | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
inputs: '{"event_name": "schedule"}' | ||
|
||
- name: Trigger Linux x86_64 Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: Linux x86_64 Nightly Build | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
inputs: '{"event_name": "schedule"}' | ||
|
||
- name: Trigger Linux ARM64 Build | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: Linux aarch64 Nightly Build | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
inputs: '{"event_name": "schedule"}' |