Last active
November 9, 2022 03:43
-
-
Save amazingandyyy/10d0fc098e75b45dd505db433e884029 to your computer and use it in GitHub Desktop.
Build container to ECR and deploy to ECS
This file contains hidden or 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
{ | |
"branches": [ | |
"main", | |
{ | |
"name": "(f|b|c)/*", | |
"channel": "next", | |
"prerelease": "beta-<%= (/^\\w+-\\d+/.exec(name.substr(2)) || [])[0] %>" | |
} | |
], | |
"plugins": [ | |
"@semantic-release/commit-analyzer", | |
"@semantic-release/release-notes-generator", | |
"@semantic-release/github", | |
[ | |
"@semantic-release/exec", | |
{ | |
"publishCmd": "./docker-publish.sh ${nextRelease.version}" | |
} | |
] | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
GHA: docs