Update orb version config.yml #31
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
name: Build to AWS ECR | |
on: push | |
jobs: | |
login-to-aws: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Login to AWS | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.ACCESS_KEY }} | |
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.PUBLIC_REGION }} | |
build-and-push-pub-ecr: | |
runs-on: ubuntu-latest | |
needs: login-to-aws | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v4 | |
- name: Login to AWS ECR | |
uses: docker/login-action@v3 | |
with: | |
registry: public.ecr.aws | |
username: ${{ secrets.ACCESS_KEY }} | |
password: ${{ secrets.SECRET_ACCESS_KEY }} | |
env: | |
aws-region: ${{ secrets.PUBLIC_REGION }} | |
- name: Build and Push Image | |
run: | | |
docker build -t bank . | |
docker tag bank:latest public.ecr.aws/h8o8x8t1/bank:v1 | |
docker push public.ecr.aws/h8o8x8t1/bank:v1 |