File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2
2
on : pull_request
3
3
jobs :
4
4
test :
5
- runs-on : ubuntu-latest
5
+ runs-on : ubuntu-22.04
6
6
steps :
7
7
- uses : actions/checkout@v3
8
8
Original file line number Diff line number Diff line change
1
+ # This needs to stay in sync with the results.yml workflow in results-analysis,
2
+ # since both repos check out results-analysis and run the same code. This setup
3
+ # is to avoid having a secret access token to allow a workflow in one repo to
4
+ # push to the other repo.
1
5
name : Update gh-pages
2
6
on :
3
- # Trigger on every three hours, or manually.
7
+ # Trigger every three hours, or manually.
4
8
schedule :
5
9
- cron : ' 20 */3 * * *'
6
10
workflow_dispatch :
7
11
jobs :
8
12
update-gh-pages :
9
- runs-on : ubuntu-latest
13
+ runs-on : ubuntu-22.04
10
14
steps :
11
15
- uses : actions/checkout@v3
12
16
24
28
- name : Install dependencies
25
29
run : npm ci
26
30
27
- - name : Build app
31
+ - name : Build
28
32
run : ./build.sh
29
33
30
34
- name : Deploy to gh-pages/
You can’t perform that action at this time.
0 commit comments