-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
65 lines (54 loc) · 1.88 KB
/
deploy.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Deploy Github Page
on:
push:
branches:
- 'main'
- 'master'
- 'pr-2316'
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
permissions:
contents: write
jobs:
deploy-gh:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Option1: Copy /lib flow
# - uses: actions/setup-node@v4
# with:
# node-version: 18
# cache: 'npm'
# - name: install dependencies
# run: npm ci --ignore-scripts
# - name: build project
# run: npm run build
# - name: rewrite .gitignore to include /lib files
# run: sed -i '/lib/d' .gitignore
# - name: add /lib files
# run: git add ./lib
# Option2: rewrite path
- name: rewirte docsify.js to import docsify.min.js
run: sed -i 's|\"\/lib\/docsify.js|\"\/lib\/docsify.min.js|g' ./docs/index.html
- name: rewirte all local path to CDN @4
run: sed -i 's|\"\/lib|\"\/\/cdn.jsdelivr.net\/npm\/docsify@4\/lib|g' ./docs/index.html
- name: view rewirted index.html
run: cat ./docs/index.html
- name: Deploy to GithubPages
uses: peaceiris/actions-gh-pages@v3
#if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./
enable_jekyll: true
keep_files: true
force_orphan: true
allow_empty_commit: true
commit_message: ${{ github.event.head_commit.message }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'