We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75ae013 commit a4501b0Copy full SHA for a4501b0
.github/workflows/arch-docs.yml
@@ -24,9 +24,11 @@ jobs:
24
supermodel-api-key: ${{ secrets.SUPERMODEL_API_KEY }}
25
base-url: /fastapi/
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-fastapi --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-fastapi --branch=main
0 commit comments