-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8607207
commit e6c98d0
Showing
3 changed files
with
31 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# @wpengine/site-deploy | ||
|
||
## 1.0.0 | ||
|
||
### Major Changes | ||
|
||
- 58eb612: Updates the main script to be more generic, allowing it to be used around different CI/CD Vendors. | ||
|
||
In order to use this image, each CI/CD vendor implementation will need to set the environment variables accordingly: | ||
|
||
```sh | ||
WPE_ENV # The target WP Engine install name | ||
REMOTE_PATH # Default is empty | ||
SRC_PATH # Default is the current directory | ||
FLAGS # Default is -azvr --inplace --exclude=".*" | ||
PHP_LINT # Default is "FALSE" | ||
CACHE_CLEAR # Default is "TRUE" | ||
SCRIPT # Default is empty | ||
``` | ||
|
||
Example of how to run this image: | ||
|
||
```sh | ||
docker run --rm \ | ||
-e "WPE_SSHG_KEY_PRIVATE" \ | ||
--env-file ./.env \ | ||
-v <full_path_of_site>:/site \ | ||
--workdir=/site \ | ||
wpengine/site-deploy:latest | ||
``` |
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