Skip to content

Commit

Permalink
ci: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeX4 committed Jan 18, 2024
1 parent 0e9dfb2 commit 0e2d3ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
working-directory: ./docs
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -23,8 +22,10 @@ jobs:
cache: npm

- name: Install dependencies
working-directory: ./docs
run: npm ci
- name: Build website
working-directory: ./docs
run: npm run build

# Popular action to deploy to GitHub Pages:
Expand All @@ -34,7 +35,7 @@ jobs:
with:
github_token: ${{ secrets.TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
publish_dir: ./docs/build
# The following lines assign commit authorship to the official
# GH-Actions bot for deploys to `gh-pages` branch:
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
Expand Down

0 comments on commit 0e2d3ed

Please sign in to comment.