diff --git a/.github/workflows/github_pages.yml b/.github/workflows/github_pages.yml deleted file mode 100644 index 5ebfd06..0000000 --- a/.github/workflows/github_pages.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: "docs-deploy" - -on: - push: - branches: - - master - -jobs: - build: - name: Build - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v2 - with: - version: 8 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: "20" - cache: pnpm - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: Build - run: pnpm build - - - name: Upload - uses: actions/upload-pages-artifact@v3 - with: - path: ./out - - deploy: - needs: build - permissions: - pages: write - id-token: write - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4