-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
43 lines (37 loc) · 1.04 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
name: Deploy Github Page
on:
push:
branches:
- 'main'
- '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: 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
commit_message: Deploy Pages, commit - ${{ github.event.head_commit.message }}