We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdd7a18 commit 1db2142Copy full SHA for 1db2142
.github/workflows/docs_deploy.yml
@@ -32,12 +32,14 @@ jobs:
32
cache: npm
33
34
- name: Install dependencies
35
+ working-directory: ./docs
36
run: yarn install --frozen-lockfile
37
38
- name: Build with VitePress
39
40
run: |
41
npm run docs:build
- touch docs/.vitepress/dist/.nojekyll
42
+ touch .vitepress/dist/.nojekyll
43
44
- name: Upload artifact
45
uses: actions/upload-artifact@v4
@@ -49,7 +51,7 @@ jobs:
49
51
deploy:
50
52
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.pull_request.merged) }}
53
needs: build
- runs-on: ubuntu-latest
54
+ runs-on: ubuntu-24.04
55
56
steps:
57
- name: Download Artifact
0 commit comments