-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix example content missing on CircleCI (#360)
* Fix example content missing on CircleCI * add extra example fix --------- Co-authored-by: Mateo Arboleda <[email protected]>
- Loading branch information
1 parent
b942008
commit e76d2fe
Showing
2 changed files
with
26 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,24 +13,24 @@ usage: | |
aws-ecr: circleci/[email protected] | ||
# importing aws-cli orb is required for authentication | ||
aws-cli: circleci/[email protected] | ||
workflows: | ||
build-and-push-image-with-container-registry-login: | ||
jobs: | ||
- aws-ecr/build_and_push_image: | ||
# must set container registry login to true | ||
container_registry_login: true | ||
container_registry_login_step: | ||
# custom login step for heroku. | ||
- run: docker login -u ${HEROKU_USERNAME} -p ${HEROKU_API_KEY} | ||
# custom login step for GitHub Container Registry. | ||
- run: docker login -u ${GITHUB_USERNAME} -p ${GITHUB_TOKEN} | ||
# custom login step for DockerHub. | ||
- run: docker login -u ${DOCKERHUB_ID} -p ${DOCKERHUB_PASSWORD} | ||
auth: | ||
- aws-cli/setup: | ||
role_arn: arn:aws:iam::123456789012 | ||
repo: my-sample-repo | ||
tag: sampleTag | ||
dockerfile: Dockerfile | ||
path: . | ||
region: us-west-2 | ||
workflows: | ||
build-and-push-image-with-container-registry-login: | ||
jobs: | ||
- aws-ecr/build_and_push_image: | ||
# must set container registry login to true | ||
container_registry_login: true | ||
container_registry_login_step: | ||
# custom login step for heroku. | ||
- run: docker login -u ${HEROKU_USERNAME} -p ${HEROKU_API_KEY} | ||
# custom login step for GitHub Container Registry. | ||
- run: docker login -u ${GITHUB_USERNAME} -p ${GITHUB_TOKEN} | ||
# custom login step for DockerHub. | ||
- run: docker login -u ${DOCKERHUB_ID} -p ${DOCKERHUB_PASSWORD} | ||
auth: | ||
- aws-cli/setup: | ||
role_arn: arn:aws:iam::123456789012 | ||
repo: my-sample-repo | ||
tag: sampleTag | ||
dockerfile: Dockerfile | ||
path: . | ||
region: us-west-2 |
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