Deploy to Cloudflare Workers with Wrangler
Version updated for cloudflare/wrangler-action to version v3.5.0.
- This publisher is shown as ‘verified’ by GitHub.
- This action is used across all versions by 24,714 repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
Minor Changes
#255
31a6263ef3ec73ff2d03cb4c0260379f96f7598c
Thanks @matthewdavidrodgers! - Stop racing secret uploadsFor up to date versions of wrangler, secrets are uploaded via the ‘secret:bulk’ command, which batches updates in a single API call.
For versions of wrangler without that capability, the action falls back to the single ‘secret put’ command for each secret. It races all these with a Promise.all()
Unfortunately, the single secret API cannot handle concurrency - at best, these calls have to wait on one another, holding requests open all the while. Often it times out and errors.
This fixes the legacy secret upload errors by making these calls serially instead of concurrently.