Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
1-rambo committed Feb 20, 2024
1 parent a732cd4 commit 1d887e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled
- uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
# - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -41,9 +41,9 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: pnpm install # or pnpm install / yarn install
run: npm ci # or pnpm install / yarn install
- name: Build with VitePress
run: pnpm docs:build # or pnpm docs:build / yarn docs:build
run: npm run docs:build # or pnpm docs:build / yarn docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
Expand Down

0 comments on commit 1d887e8

Please sign in to comment.