diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-14 11:01:46 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-14 11:01:46 -0700 |
| commit | bb484b20b90ec9ec3dd5d9d034cb628943b09d40 (patch) | |
| tree | 19a04efb6f708e548ae544e81fae902d9fc9e242 | |
| parent | 4f99dfff2d01cf4fc36c79652ce4b46d04dc87e1 (diff) | |
move deployment to vercel
| -rw-r--r-- | .github/workflows/deploy.yml | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 043be16..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Deploy static content to Pages - -on: - push: - branches: ['main'] - workflow_dispatch: - -permissions: - contents: read - pages: write - id-token: write - -concurrency: - group: 'pages' - cancel-in-progress: true - -jobs: - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Node - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: Install pnpm - run: npm install -g pnpm - - - name: Install dependencies - run: pnpm install - working-directory: site - - - name: Build - run: | - pnpm run build - cp site/dist/index.html site/dist/404.html - working-directory: site - - - name: Setup Pages - uses: actions/configure-pages@v4 - - - name: Upload artifact - uses: actions/upload-pages-artifact@v3 - with: - path: './site/dist' - - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v4 |
