Skip to content

Commit

Permalink
ci: fix website github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Oct 29, 2024
1 parent 9799c28 commit 307b8f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build pages
env:
CI: true
run: yarn api:build && yarn vitepress:docs:build
run: yarn api:build && yarn vitepress:build
- name: Publish pages
env:
CI: true
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@
"api:build": "lerna run build --concurrency=4 && tsdoc",
"api:build:dev": "npx -p chokidar-cli chokidar \"docs/.templates/**/*.{js,ejs}\" -c \"tsdoc\"",
"docs:install": "cd docs && yarn install && cd ..",
"docs:serve": "yarn api:build && yarn vitepress:docs:serve",
"docs:build": "yarn api:build && yarn vitepress:build",
"docs:serve": "yarn api:build && yarn vitepress:serve",
"docs:publish": "CI=1 monorepo publish ghpages",
"vitepress:build": "rm -rf ./docs/api && cd ./docs && yarn docs:build",
"vitepress:docs:serve": "yarn docs:install && cd docs && yarn docs:serve -p 8080",
"vitepress:serve": "yarn docs:install && cd docs && yarn docs:serve -p 8080",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run",
Expand Down

0 comments on commit 307b8f9

Please sign in to comment.