Skip to content

Commit

Permalink
chore: Temporarily disable generating docs from GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
matvp91 committed Nov 6, 2024
1 parent 8e52970 commit 812fc3a
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,30 +28,29 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v3
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
cache: npm
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: pnpm --filter "docs" install
- name: Build with VitePress
run: pnpm --filter "docs" build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
# - name: Install dependencies
# run: npm ci
# - name: Build with VitePress
# run: pnpm --filter "docs" build
# - name: Upload artifact
# uses: actions/upload-pages-artifact@v3
# with:
# path: docs/.vitepress/dist

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
# deploy:
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# needs: build
# runs-on: ubuntu-latest
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v4

0 comments on commit 812fc3a

Please sign in to comment.