-
I was trying to deploy to multiple cloudflare accounts with multiple wrangler files, but not sure if it is possible or not? |
Beta Was this translation helpful? Give feedback.
Answered by
jahands
Dec 6, 2024
Replies: 1 comment
-
Hi! This is possible using a custom command: - name: Deploy
uses: cloudflare/wrangler-action@v3
with:
command: deploy -c ./wrangler.toml Here's a full example of what I tested with: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jahands
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi! This is possible using a custom command:
Here's a full example of what I tested with:
https://github.com/jahands/wrangler-action-example/blob/1026fa8ca3b02af178f22b585af502e5dda61533/.github/workflows/deploy.yml#L27