-
Notifications
You must be signed in to change notification settings - Fork 52
35 lines (33 loc) 路 851 Bytes
/
Copy pathdeploy.yml
File metadata and controls
35 lines (33 loc) 路 851 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
33
34
35
name: Deploy
on:
workflow_dispatch:
push:
branches:
- master
jobs:
deploy-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- name: Build site
run: npm run build
- run: echo 'antv.vision' > dist/CNAME
- run: |
cd dist
git init
git config --local user.name antv
git config --local user.email github@antv.vision
git add .
git commit -m "update by release action"
- uses: ad-m/github-push-action@master
with:
github_token: ${{secrets.PERSONAL_ACCESS_TOKEN}}
directory: dist
branch: gh-pages
force: true