Skip to content

Commit

Permalink
ci: fix deploy docs pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanosdev committed Feb 13, 2024
1 parent e6f5772 commit 3f8e3e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3

- uses: ./.github/actions/setup-bun
- uses: ./.github/actions/setup-pnpm

- name: Build Docs
run: bun docs
run: pnpm -F docs build

- name: Fix permissions
run: |
chmod -c -R +rX "docs/" | while read line; do
chmod -c -R +rX "docs/build/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v2
with:
path: docs/
path: docs/build/

deploy_docs:
name: Deploy Docs
Expand Down

0 comments on commit 3f8e3e3

Please sign in to comment.