We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce25d2e commit 9432be0Copy full SHA for 9432be0
.github/workflows/build_web.yaml
@@ -0,0 +1,27 @@
1
+name: build_web
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '0 8 * * *'
7
8
+jobs:
9
+ build_web:
10
+ runs-on: ubuntu-latest
11
+ timeout-minutes: 10
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: actions/setup-node@v3
15
+ with:
16
+ node-version: 20
17
+ - run: npm ci
18
+ - run: npm run downport
19
+ - run: npm run transpile
20
+ - name: send to downport repository
21
+ uses: peaceiris/actions-gh-pages@v3
22
23
+ user_name: 'github-actions[bot]'
24
+ user_email: 'github-actions[bot]@users.noreply.github.com'
25
+ publish_branch: main
26
+ publish_dir: ./output
27
+ destination_dir: output
0 commit comments