From 459b341b90b88de11bc08a6878bb6432fd1ce75b Mon Sep 17 00:00:00 2001 From: HarshCasper Date: Thu, 26 Jun 2025 19:12:48 +0530 Subject: [PATCH] remove surge preview deployments --- .github/workflows/preview-build.yml | 46 ---------------- .github/workflows/preview-deploy.yml | 81 ---------------------------- .github/workflows/preview-start.yml | 16 ------ 3 files changed, 143 deletions(-) delete mode 100644 .github/workflows/preview-build.yml delete mode 100644 .github/workflows/preview-deploy.yml delete mode 100644 .github/workflows/preview-start.yml diff --git a/.github/workflows/preview-build.yml b/.github/workflows/preview-build.yml deleted file mode 100644 index 7c96008b..00000000 --- a/.github/workflows/preview-build.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Preview Build - -on: - pull_request: - types: [opened, synchronize, reopened] - -jobs: - build-preview: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - with: - ref: ${{ github.event.pull_request.head.sha }} - submodules: recursive - fetch-depth: 0 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: '22' - - - name: Install and Build - run: | - npm install - npm run build - cd dist - ls -a - - - name: Upload dist artifact - uses: actions/upload-artifact@v4 - with: - name: dist - path: ./dist - retention-days: 7 - - - name: Save PR number - if: ${{ always() }} - run: echo ${{ github.event.number }} > ./pr-id.txt - - - name: Upload PR number - if: ${{ always() }} - uses: actions/upload-artifact@v4 - with: - name: pr - path: ./pr-id.txt diff --git a/.github/workflows/preview-deploy.yml b/.github/workflows/preview-deploy.yml deleted file mode 100644 index 1c42a4f5..00000000 --- a/.github/workflows/preview-deploy.yml +++ /dev/null @@ -1,81 +0,0 @@ -name: Preview Deploy - -on: - workflow_run: - workflows: ["Preview Build"] - types: - - completed - -jobs: - success: - runs-on: ubuntu-latest - if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' - steps: - - name: download pr artifact - uses: dawidd6/action-download-artifact@v9 - with: - workflow: ${{ github.event.workflow_run.workflow_id }} - name: pr - - - name: Save the PR ID - id: pr - run: echo "::set-output name=id::$( - body-include: '' - number: ${{ steps.pr.outputs.id }} - - - name: Job failure - if: ${{ failure() }} - uses: actions-cool/maintain-one-comment@v3.2.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - body: | - Deploy PR Preview failed. - - body-include: '' - number: ${{ steps.pr.outputs.id }} - - failed: - runs-on: ubuntu-latest - if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'failure' - steps: - - name: Download PR artifact - uses: dawidd6/action-download-artifact@v9 - with: - workflow: ${{ github.event.workflow_run.workflow_id }} - name: pr - - - name: Save the PR ID - id: pr - run: echo "::set-output name=id::$( - body-include: '' - number: ${{ steps.pr.outputs.id }} diff --git a/.github/workflows/preview-start.yml b/.github/workflows/preview-start.yml deleted file mode 100644 index ff834229..00000000 --- a/.github/workflows/preview-start.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Preview Start - -on: pull_request_target - -jobs: - preview: - runs-on: ubuntu-latest - steps: - - name: create - uses: actions-cool/maintain-one-comment@v3.2.0 - with: - token: ${{ secrets.GITHUB_TOKEN }} - body: | - ⚡️ Deploying PR Preview... - - body-include: ''