-
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 1.13 KB
/
main.yml
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
36
37
38
39
name: CI & CD
on:
push:
branches:
- master
jobs:
Build-and-Publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install Dependencies
run: pnpm i --frozen-lockfile
- name: Generate files
run: pnpm generate
- name: Deploy for Global
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./public
personal_token: ${{ secrets.GITHUB_TOKEN }}
force_orphan: true
cname: polyfill.web-cell.dev
- name: Deploy for China mainland
uses: bacongobbler/[email protected]
with:
source_dir: ./public
container_name: $web
connection_string: ${{ secrets.ConnectionString }}
sync: 'true'