Skip to content

Commit 1db2142

Browse files
committed
Attempt fix deploy build to use relative path
1 parent cdd7a18 commit 1db2142

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/docs_deploy.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,14 @@ jobs:
3232
cache: npm
3333

3434
- name: Install dependencies
35+
working-directory: ./docs
3536
run: yarn install --frozen-lockfile
3637

3738
- name: Build with VitePress
39+
working-directory: ./docs
3840
run: |
3941
npm run docs:build
40-
touch docs/.vitepress/dist/.nojekyll
42+
touch .vitepress/dist/.nojekyll
4143
4244
- name: Upload artifact
4345
uses: actions/upload-artifact@v4
@@ -49,7 +51,7 @@ jobs:
4951
deploy:
5052
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged) }}
5153
needs: build
52-
runs-on: ubuntu-latest
54+
runs-on: ubuntu-24.04
5355

5456
steps:
5557
- name: Download Artifact

0 commit comments

Comments
 (0)