From 70811a70d5ddb73e7c0e524a2a3a40b26b89c158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=AC=E3=82=AF=E3=82=B5=E3=83=B3=E3=83=80?= =?UTF-8?q?=E3=83=BC=2Eeth?= Date: Tue, 20 Feb 2024 08:29:01 +0900 Subject: [PATCH] fix: remove deprecated ci --- .github/workflows/cloudflare-deploy.yml | 31 ------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/cloudflare-deploy.yml diff --git a/.github/workflows/cloudflare-deploy.yml b/.github/workflows/cloudflare-deploy.yml deleted file mode 100644 index 9301cefa..00000000 --- a/.github/workflows/cloudflare-deploy.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Deploy to Cloudflare Pages - -on: - push: - -jobs: - deploy-to-cloudflare: - name: Deploy to Cloudflare Pages - runs-on: ubuntu-22.04 - permissions: - contents: read - - steps: - - name: Check Cloudflare API Token - run: | - if [[ -z "${{ secrets.CLOUDFLARE_API_TOKEN }}" ]]; then - echo "CLOUDFLARE_API_TOKEN secret must be set" >&2 - exit 1 - fi - - name: Deploy to Cloudflare - uses: ubiquity/cloudflare-deploy-action@main - with: - cloudflare_api_token: ${{ secrets.CLOUDFLARE_API_TOKEN }} - repository: ${{ github.repository }} - production_branch: ${{ github.event.repository.default_branch }} - output_directory: "static" - is_production: ${{ github.event_name == 'push' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}' }} - # env: - # Add any environment variables you need to pass along here - # SUPABASE_URL: ${{ secrets.SUPABASE_URL }} - # SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}