We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f8051c commit a8103b7Copy full SHA for a8103b7
.github/workflows/arch-docs.yml
@@ -24,9 +24,11 @@ jobs:
24
supermodel-api-key: ${{ secrets.SUPERMODEL_API_KEY }}
25
base-url: /supabase/
26
27
+ - name: Install wrangler
28
+ run: npm install -g wrangler@3
29
+
30
- name: Deploy to Cloudflare Pages
- uses: cloudflare/wrangler-action@v3
- with:
- apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
31
- accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
32
- command: pages deploy ./arch-docs-output --project-name=gtd-supabase --branch=main
+ env:
+ CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
33
+ CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
34
+ run: wrangler pages deploy ./arch-docs-output --project-name=gtd-supabase --branch=main
0 commit comments