-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (64 loc) · 1.89 KB
/
release-trigger.yml
File metadata and controls
68 lines (64 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Trigger Release
on:
push:
branches:
- main
jobs:
trigger:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
name: Build WISE Builder
with:
github-token: ${{ secrets.WISE_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'WISE-Developers',
repo: 'WISE_Builder_Component',
workflow_id: 'maven-publish.yml',
ref: 'main'
})
- uses: actions/github-script@v6
name: Build WISE Manager
with:
github-token: ${{ secrets.WISE_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'WISE-Developers',
repo: 'WISE_Manager_Component',
workflow_id: 'maven-publish.yml',
ref: 'main'
})
- uses: actions/github-script@v6
name: Build WISE
with:
github-token: ${{ secrets.WISE_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'WISE-Developers',
repo: 'WISE_Application',
workflow_id: 'cmake.yml',
ref: 'main'
})
- uses: actions/github-script@v6
name: Build the WISE JS API
with:
github-token: ${{ secrets.WISE_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'WISE-Developers',
repo: 'WISE_JS_API',
workflow_id: 'archive.yml',
ref: 'main'
})
- uses: actions/github-script@v6
name: Build the WISE Java API
with:
github-token: ${{ secrets.WISE_PAT }}
script: |
await github.rest.actions.createWorkflowDispatch({
owner: 'WISE-Developers',
repo: 'WISE_Java_API',
workflow_id: 'maven-publish.yml',
ref: 'main'
})