From 46664e05d599f1532d6ee5751b7f25bff93c29a7 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 16 Mar 2025 12:49:58 -0600 Subject: [PATCH] refactor: clean up build preview workflow by removing commented deployment steps - Removed commented-out deployment steps for Cloudflare Pages to enhance clarity and focus on the build process. - Maintained the artifact upload step to ensure build outputs are preserved. --- .github/workflows/build-preview.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml index fcdd7c12..3c56b3f7 100644 --- a/.github/workflows/build-preview.yml +++ b/.github/workflows/build-preview.yml @@ -27,15 +27,6 @@ jobs: - name: Build working-directory: app run: pnpm build - # - 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 uses: actions/upload-artifact@v4