Deploy to Cloudflare Workers with Wrangler
Version updated for cloudflare/wrangler-action to version v3.4.0.
- This publisher is shown as ‘verified’ by GitHub.
- This action is used across all versions by 5,665 repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
Minor Changes
#213
d13856dfc92816473ebf47f66e263a2668a97896
Thanks @GrantBirki! - This change introduces three new GitHub Actions output variables. These variables are as follows:command-output
- contains the string results ofstdout
command-stderr
- contains the string results ofstderr
deployment-url
- contains the string results of the URL that was deployed (ex:https://<your_pages_site>.pages.dev
)
These output variables are intended to be used by more advanced workflows that require the output results or deployment url from Wrangler commands in subsequent workflow steps.
Patch Changes
#216
9aba9c34daabca23a88191a5fe1b81fa721c1f11
Thanks @Cherry! - Fixes issues with semver comparison, where version parts were treated lexicographically instead of numerically.Bulk secret uploading was introduced in wrangler
3.4.0
, and this action tries to check if the version used is greater than3.4.0
, and then if so, using the new bulk secret API which is faster. Due to a bug in the semver comparison,3.19.0
was being considered less than3.4.0
, and then using an older and slower method for uploading secrets.Now the semver comparison is fixed, the faster bulk method is used for uploading secrets when available.