We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04d7624 commit a1bd613Copy full SHA for a1bd613
1 file changed
.github/workflows/deploy.yml
@@ -5,7 +5,13 @@ on:
5
branches:
6
- main
7
paths:
8
- - 'website/**'
+ - 'docs/**'
9
+ - 'src/**'
10
+ - 'static/**'
11
+ - 'docusaurus.config.ts'
12
+ - 'sidebars.ts'
13
+ - 'package.json'
14
+ - 'package-lock.json'
15
- '.github/workflows/deploy.yml'
16
workflow_dispatch:
17
@@ -21,9 +27,6 @@ concurrency:
21
27
jobs:
22
28
build:
23
29
runs-on: ubuntu-latest
24
- defaults:
25
- run:
26
- working-directory: website
30
steps:
31
- name: Checkout
32
uses: actions/checkout@v4
@@ -33,7 +36,6 @@ jobs:
33
36
with:
34
37
node-version: 20
35
38
cache: npm
- cache-dependency-path: website/package-lock.json
39
40
- name: Install dependencies
41
run: npm ci
@@ -44,7 +46,7 @@ jobs:
44
46
- name: Upload artifact
45
47
uses: actions/upload-pages-artifact@v3
48
- path: website/build
49
+ path: build
50
51
deploy:
52
environment:
0 commit comments