Skip to content

Commit 2c11e4e

Browse files
committed
Adds working directory
1 parent b330121 commit 2c11e4e

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

.github/workflows/deploy.yml

+15-13
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,33 @@
33
name: Deploy VitePress site to Pages
44

55
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]
1010

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:
1313

1414
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1515
permissions:
16-
contents: read
17-
pages: write
18-
id-token: write
16+
contents: read
17+
pages: write
18+
id-token: write
1919

2020
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
2121
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2222
concurrency:
23-
group: pages
24-
cancel-in-progress: false
23+
group: pages
24+
cancel-in-progress: false
2525

2626
jobs:
2727
# Build job
2828
build:
2929
runs-on: ubuntu-latest
30+
defaults:
31+
run:
32+
working-directory: docs
3033
steps:
3134
- name: Checkout
3235
uses: actions/checkout@v4
@@ -39,7 +42,6 @@ jobs:
3942
with:
4043
node-version: 20
4144
cache: npm # or pnpm / yarn
42-
cache-dependency-path: 'docs/package-lock.json'
4345
- name: Setup Pages
4446
uses: actions/configure-pages@v4
4547
- name: Install dependencies
@@ -62,4 +64,4 @@ jobs:
6264
steps:
6365
- name: Deploy to GitHub Pages
6466
id: deployment
65-
uses: actions/deploy-pages@v4
67+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)