From 0d30e7bc188df411112671c963e204a04447c03c Mon Sep 17 00:00:00 2001 From: Alexa Amundson <118287761+blackboxprogramming@users.noreply.github.com> Date: Mon, 16 Mar 2026 12:21:59 -0500 Subject: [PATCH] =?UTF-8?q?cleanup:=20remove=20unused=20workflow=20?= =?UTF-8?q?=E2=80=94=20Actions=20disabled,=20CI=20runs=20on=20Gitea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy-cloudflare.yml | 46 ------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/deploy-cloudflare.yml diff --git a/.github/workflows/deploy-cloudflare.yml b/.github/workflows/deploy-cloudflare.yml deleted file mode 100644 index 56950ae..0000000 --- a/.github/workflows/deploy-cloudflare.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Deploy to Cloudflare Pages - -on: - push: - branches: [main, master] - paths: - - 'domains/**' - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-latest - strategy: - matrix: - site: - - blackroad-network - - blackroad-systems - - blackroad-me - - lucidia-earth - - aliceqi - - blackroad-inc - - blackroadai - - lucidia-studio - - lucidiaqi - - blackroad-quantum - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Deploy ${{ matrix.site }} to Cloudflare Pages - uses: cloudflare/pages-action@v1 - with: - apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} - accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - projectName: ${{ matrix.site }} - directory: domains/${{ matrix.site }} - gitHubToken: ${{ secrets.GITHUB_TOKEN }} - - - name: Verify Deployment - run: | - echo "✅ ${{ matrix.site }} deployed successfully" - # Wait for deployment to be live - sleep 10 - # Test the deployment (optional) - # curl -I https://${{ matrix.site }}.pages.dev