From 0ef9970aff9eabf3d2c7a2faf034c9b13b36266e Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 16 Mar 2025 12:24:30 -0600 Subject: [PATCH] refactor: update build preview workflow for clarity and efficiency - Renamed job to "Build Preview Deployment" and adjusted concurrency settings. - Streamlined steps by removing unnecessary permissions and comments. - Updated pnpm action to the latest version and ensured Node.js setup is consistent. - Removed deployment step to Cloudflare Pages and related verification steps for simplification. --- .github/workflows/build-preview.yml | 62 ++++++++++------------------- 1 file changed, 21 insertions(+), 41 deletions(-) diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml index 537c958..bb01c79 100644 --- a/.github/workflows/build-preview.yml +++ b/.github/workflows/build-preview.yml @@ -1,31 +1,24 @@ -name: "Build and Deploy Preview" +name: Build Preview Deployment + +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} + cancel-in-progress: true on: pull_request: types: [opened, synchronize] jobs: - build-and-deploy: + build-preview: runs-on: ubuntu-latest - name: Build and Deploy Preview - permissions: - contents: read - actions: write - pull-requests: write - deployments: write steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Setup pnpm - uses: pnpm/action-setup@v2 + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 with: version: 8 + - uses: actions/setup-node@v4 + with: + node-version: 20 - name: Install dependencies working-directory: app @@ -34,32 +27,19 @@ jobs: - name: Build working-directory: app run: pnpm build - - - name: List build output - run: ls -la app/dist - - - name: Deploy to Cloudflare Pages - uses: AdrianGonz97/refined-cf-pages-action@v1 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - githubToken: ${{ secrets.GITHUB_TOKEN }} - projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }} - deploymentName: Preview - directory: app/dist + # - name: Deploy to Cloudflare Pages + # uses: AdrianGonz97/refined-cf-pages-action@v1 + # with: + # apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + # accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + # githubToken: ${{ secrets.GITHUB_TOKEN }} + # projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }} + # deploymentName: Preview + # directory: app/dist - name: Upload build artifact - id: upload-artifact uses: actions/upload-artifact@v4 with: name: preview-build path: app/dist - retention-days: 1 - - - name: Verify artifact upload - run: | - echo "Artifact upload completed" - echo "Workflow ID: ${{ github.run_id }}" - echo "Repository: ${{ github.repository }}" - echo "Event name: ${{ github.event_name }}" - echo "Event type: ${{ github.event.action }}" \ No newline at end of file + There is an internal issue with your Cloudflare Pages Git installation. If this issue persists after reinstalling your installation, contact support: https://cfl.re/3WgEyrH. \ No newline at end of file