File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+
7+ workflow_dispatch :
8+ jobs :
9+ build_main :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Checkout tutorial-compiler
14+ uses : actions/checkout@v2
15+ with :
16+ repository : devonfw-tutorials/tutorial-compiler
17+
18+ - name : Checkout playbooks
19+ uses : actions/checkout@v2
20+ with :
21+ repository : devonfw-tutorials/tutorials
22+ path : playbooks
23+
24+ - uses : actions/setup-node@v2-beta
25+
26+ - name : install TS
27+ run : npm install typescript
28+
29+ - name : npm install
30+ run : npm install
31+
32+ - name : run buildRun.sh
33+ run : sh buildRun.sh
34+
35+ - name : Repository dispatch
36+ uses : peter-evans/repository-dispatch@v1
37+ with :
38+ token : ${{ secrets.REPO_ACCESS_TOKEN }}
39+ repository : devonfw-tutorials/katacoda-scenarios
40+ event-type : dispatch-katacoda-scenarios
Original file line number Diff line number Diff line change 11name : CI
22
33on :
4- push :
5- branches : [ main ]
64 pull_request :
75 branches : [ main ]
86
97 workflow_dispatch :
108jobs :
11- build :
9+ build_pullRequest :
1210 runs-on : ubuntu-latest
1311
1412 steps :
You can’t perform that action at this time.
0 commit comments