From e4f004eb9795a88e1869c766062026648dd1521b Mon Sep 17 00:00:00 2001 From: Aditya Jyoti Date: Fri, 24 May 2024 20:25:13 +0530 Subject: [PATCH] remove: deployment files --- .github/workflows/deploy.yml | 57 ------------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 14a4d73..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: 'main' - pull_request: - branches: 'main' - workflow_dispatch: - -jobs: - build_site: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install pnpm - uses: pnpm/action-setup@v3 - with: - version: 8 - - - name: Install Node.js - uses: actions/setup-node@v4 - with: - node-version: 21 - cache: pnpm - - - name: Install dependencies - run: pnpm install - - - name: build - env: - BASE_PATH: '/${{ github.event.repository.name }}' - run: | - pnpm run build - - - name: Upload Artifacts - uses: actions/upload-pages-artifact@v3 - with: - path: 'build/' - - deploy: - needs: build_site - runs-on: ubuntu-latest - - permissions: - pages: write - id-token: write - - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - - steps: - - name: Deploy - id: deployment - uses: actions/deploy-pages@v4