-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (30 loc) · 757 Bytes
/
build-assets.yml
File metadata and controls
32 lines (30 loc) · 757 Bytes
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
name: build assets
on:
push:
branches:
- master
paths:
- 'lib/**'
- 'scripts/workflow/*.js'
jobs:
build:
runs-on: ubuntu-latest
name: Build assets
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js v18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Build file
run: yarn && npm run build:all
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./assets
user_name: 'github-actions[bot]'
user_email: '41898282+github-actions[bot]@users.noreply.github.com'