From bc6d3acfee87316b940dee79105f2ef01ec385be Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Sun, 25 Jan 2026 18:11:09 -0500 Subject: [PATCH] chore(ci): remove duplicate workflow --- .github/workflows/deploy-manifests.yml | 48 -------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/deploy-manifests.yml diff --git a/.github/workflows/deploy-manifests.yml b/.github/workflows/deploy-manifests.yml deleted file mode 100644 index 3ad620a..0000000 --- a/.github/workflows/deploy-manifests.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Deploy Manifests - -on: - push: - branches: - - main - paths: - - 'src/internal/manifest/data/*.json' - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Configure AWS CLI for R2 - run: | - aws configure set aws_access_key_id ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }} - aws configure set aws_secret_access_key ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }} - aws configure set default.region auto - - - name: Deploy manifests to R2 - env: - R2_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com - R2_BUCKET: ${{ secrets.CLOUDFLARE_R2_MANIFESTS_BUCKET }} - run: | - echo "Deploying manifests to Cloudflare R2..." - - for file in src/internal/manifest/data/*.json; do - filename=$(basename "$file") - echo "Uploading $filename..." - aws s3 cp "$file" "s3://${R2_BUCKET}/${filename}" \ - --endpoint-url "${R2_ENDPOINT}" \ - --content-type "application/json" \ - --cache-control "public, max-age=300" - done - - echo "Deployment complete!" - - - name: Verify deployment - env: - R2_ENDPOINT: https://${{ secrets.CLOUDFLARE_ACCOUNT_ID }}.r2.cloudflarestorage.com - R2_BUCKET: ${{ secrets.CLOUDFLARE_R2_MANIFESTS_BUCKET }} - run: | - echo "Verifying deployed files..." - aws s3 ls "s3://${R2_BUCKET}/" --endpoint-url "${R2_ENDPOINT}"