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