Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
cloudflare-wrangler-action/CHANGELOG.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
23 lines (15 sloc)
679 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2.0.0 (Breaking update) | |
## Additions | |
* New `command` input | |
* This allows you to specify the Wrangler command you would like to run. | |
For example, if you want to publish the production version of your Worker you may run `publish --env=production`. | |
* This opens up other possibilities too like publishing a Pages project: `pages publish <directory> --project-name=<name>`. | |
* New `accountId` input | |
* This allows you to specify your account ID. | |
## Removals | |
* Removed `publish` input (refer to [Breaking changes](#breaking-changes)). | |
## Changes | |
-- no changes -- | |
## __Breaking changes__ | |
* `publish` has been removed. | |
* You should instead do `command: publish`. |