Skip to content

Commit

Permalink
Fix website publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Feb 4, 2025
1 parent c5a0ed6 commit 05175d4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH }}
- name: Website Setup
working-directory: website
run: npm install && npm run build
run: |
npm cache clean --force
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.3
with:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ jobs:
with:
node-version: 20.x
- name: Root
run: npm install && npm run build
run: npm install
- name: Build
working-directory: website
run: npm install && npm run build
run: |
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.3
with:
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"tgrid": "^1.0.3",
"tstl": "^3.0.0",
"typescript": "~5.7.3",
"typia": "../"
"typia": "latest"
},
"devDependencies": {
"@rspack/cli": "^1.0.0",
Expand Down

0 comments on commit 05175d4

Please sign in to comment.