diff --git a/.github/workflows/deploy-page.yml b/.github/workflows/deploy-page.yml deleted file mode 100644 index 20d8ccf..0000000 --- a/.github/workflows/deploy-page.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Deploy to GitHub Pages - -# This action is used to deploy site to GitHub Pages. - -on: - push: - branches: [main] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: pages - cancel-in-progress: false - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - with: - version: latest - - - uses: actions/setup-node@v4 - with: - node-version: 22 - cache: pnpm - - - run: pnpm install --frozen-lockfile - - - run: pnpm build - - - uses: actions/upload-pages-artifact@v3 - with: - path: doc_build - - deploy: - needs: build - runs-on: ubuntu-latest - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - steps: - - uses: actions/deploy-pages@v4