-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use environment variables to distinguish between PROD and DEV environments. Use format syntax to substitute the secret variable names for DEV and PROD. The Set up environment variables step will mark the run as deployable if: The repository is MariaDB/buildbot. DEV-specific variables will be assigned if the branch is dev. The deployment will go to PROD if the event is workflow_dispatch, with PROD-specific variables assigned when the branch is main. The Start/Stop stack will only run for the Development environment. The Home.jade replacement has been removed, as it should already be handled.
- Loading branch information
1 parent
59b2d69
commit 9e553ca
Showing
2 changed files
with
43 additions
and
40 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ err() { | |
|
||
usage() { | ||
echo "Usage: $0 -e <DEV|PROD>" | ||
exit 1 | ||
exit 0 | ||
} | ||
|
||
ENVIRONMENT="" | ||
|