From 05175d400710231a2deee5260198307bb1bd2a7a Mon Sep 17 00:00:00 2001 From: Jeongho Nam Date: Tue, 4 Feb 2025 22:43:23 +0900 Subject: [PATCH] Fix website publisher --- .github/workflows/release.yml | 5 ++++- .github/workflows/website.yml | 6 ++++-- website/package.json | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0010609a83..1a3c8a5c14 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 5f6a585159..c993e35068 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -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: diff --git a/website/package.json b/website/package.json index 0e077a3407..a34d521077 100644 --- a/website/package.json +++ b/website/package.json @@ -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",