-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
47 lines (41 loc) · 1.22 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
name: Deploy Github Page
on:
push:
branches:
- 'main'
- 'master'
- 'pr-2316'
jobs:
deploy-gh:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- 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
- name: rewirte path to CDN @4
run: sed -i 's/\"\/lib/\"\/\\/cdn.jsdelivr.net\/npm\/docsify@4\/lib/g' /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: PagesDeploy commit - ${{ github.event.head_commit.message }}