File tree 1 file changed +15
-13
lines changed
1 file changed +15
-13
lines changed Original file line number Diff line number Diff line change 3
3
name : Deploy VitePress site to Pages
4
4
5
5
on :
6
- # Runs on pushes targeting the `main` branch. Change this to `master` if you're
7
- # using the `master` branch as the default branch.
8
- push :
9
- branches : [main]
6
+ # Runs on pushes targeting the `main` branch. Change this to `master` if you're
7
+ # using the `master` branch as the default branch.
8
+ push :
9
+ branches : [main]
10
10
11
- # Allows you to run this workflow manually from the Actions tab
12
- workflow_dispatch :
11
+ # Allows you to run this workflow manually from the Actions tab
12
+ workflow_dispatch :
13
13
14
14
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
15
15
permissions :
16
- contents : read
17
- pages : write
18
- id-token : write
16
+ contents : read
17
+ pages : write
18
+ id-token : write
19
19
20
20
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
21
21
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
22
22
concurrency :
23
- group : pages
24
- cancel-in-progress : false
23
+ group : pages
24
+ cancel-in-progress : false
25
25
26
26
jobs :
27
27
# Build job
28
28
build :
29
29
runs-on : ubuntu-latest
30
+ defaults :
31
+ run :
32
+ working-directory : docs
30
33
steps :
31
34
- name : Checkout
32
35
uses : actions/checkout@v4
39
42
with :
40
43
node-version : 20
41
44
cache : npm # or pnpm / yarn
42
- cache-dependency-path : ' docs/package-lock.json'
43
45
- name : Setup Pages
44
46
uses : actions/configure-pages@v4
45
47
- name : Install dependencies
62
64
steps :
63
65
- name : Deploy to GitHub Pages
64
66
id : deployment
65
- uses : actions/deploy-pages@v4
67
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments