Skip to content

Commit e2e1590

Browse files
author
Philip Eoute
committed
Disable deployment workflow in GitHub Actions; all lines commented out to prevent accidental runs as deployment is now managed via Cloudflare's Git integration.
1 parent a47c776 commit e2e1590

1 file changed

Lines changed: 26 additions & 23 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,26 @@
1-
name: Deploy
2-
3-
on:
4-
push:
5-
branches:
6-
- main
7-
workflow_dispatch:
8-
repository_dispatch:
9-
10-
permissions:
11-
contents: read
12-
13-
jobs:
14-
deploy:
15-
runs-on: ubuntu-latest
16-
name: Deploy
17-
steps:
18-
- uses: actions/checkout@v4
19-
- name: Deploy
20-
uses: cloudflare/wrangler-action@6d58852c35a27e6034745c5d0bc373d739014f7f # v3
21-
with:
22-
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
23-
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
1+
# NOTE: This workflow is disabled because deployment is now handled via Cloudflare's Git integration.
2+
# All lines below are commented out to prevent accidental runs.
3+
#
4+
# name: Deploy
5+
#
6+
# on:
7+
# push:
8+
# branches:
9+
# - main
10+
# workflow_dispatch:
11+
# repository_dispatch:
12+
#
13+
# permissions:
14+
# contents: read
15+
#
16+
# jobs:
17+
# deploy:
18+
# runs-on: ubuntu-latest
19+
# name: Deploy
20+
# steps:
21+
# - uses: actions/checkout@v4
22+
# - name: Deploy
23+
# uses: cloudflare/wrangler-action@6d58852c35a27e6034745c5d0bc373d739014f7f # v3
24+
# with:
25+
# apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
26+
# accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}

0 commit comments

Comments
 (0)