From a0d1baffc689d958d451d07ef96de7bc24bfa06d Mon Sep 17 00:00:00 2001 From: jollygrin Date: Fri, 6 Sep 2024 03:25:13 +0200 Subject: [PATCH] update workflow --- .github/workflows/nextjs.yml | 68 +++++++++++++----------------------- 1 file changed, 25 insertions(+), 43 deletions(-) diff --git a/.github/workflows/nextjs.yml b/.github/workflows/nextjs.yml index cae9a10..3f02ede 100644 --- a/.github/workflows/nextjs.yml +++ b/.github/workflows/nextjs.yml @@ -1,7 +1,3 @@ -# Sample workflow for building and deploying a Next.js site to GitHub Pages -# -# To get started with Next.js see: https://nextjs.org/docs/getting-started -# name: Deploy Next.js site to Pages on: @@ -19,7 +15,6 @@ permissions: id-token: write # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. -# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: "pages" cancel-in-progress: false @@ -31,54 +26,41 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Detect package manager - id: detect-package-manager - run: | - if [ -f "${{ github.workspace }}/yarn.lock" ]; then - echo "manager=yarn" >> $GITHUB_OUTPUT - echo "command=install" >> $GITHUB_OUTPUT - echo "runner=yarn" >> $GITHUB_OUTPUT - exit 0 - elif [ -f "${{ github.workspace }}/package.json" ]; then - echo "manager=npm" >> $GITHUB_OUTPUT - echo "command=ci" >> $GITHUB_OUTPUT - echo "runner=npx --no-install" >> $GITHUB_OUTPUT - exit 0 - else - echo "Unable to determine package manager" - exit 1 - fi - - name: Setup Node + + - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: "16" - cache: ${{ steps.detect-package-manager.outputs.manager }} + node-version: "18" + cache: pnpm + + - name: Install pnpm + run: npm install -g pnpm + + - name: Install Dependencies + run: pnpm install --frozen-lockfile + - name: Setup Pages uses: actions/configure-pages@v3 with: - # Automatically inject basePath in your Next.js configuration file and disable - # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized). - # - # You may remove this line if you want to manage the configuration yourself. static_site_generator: next - - name: Restore cache + + - name: Restore Next.js cache uses: actions/cache@v3 with: - path: | - .next/cache - # Generate a new cache whenever packages or source files change. - key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} - # If source files changed but packages didn't, rebuild from a prior cache. + path: .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} restore-keys: | - ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}- - - name: Install dependencies - run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} + ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}- + - name: Build with Next.js - run: ${{ steps.detect-package-manager.outputs.runner }} next build - - name: Run postbuild - run: ${{ steps.detect-package-manager.outputs.runner }} node lib/buildTools/prefixFonts.js - - name: Static HTML export with Next.js - run: ${{ steps.detect-package-manager.outputs.runner }} next export + run: pnpm next build + + # - name: Run postbuild script + # run: pnpm node lib/buildTools/prefixFonts.js + + - name: Export Static HTML with Next.js + run: pnpm next export + - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: