Skip to content

chore(deps): lock file maintenance (#62) #54

chore(deps): lock file maintenance (#62)

chore(deps): lock file maintenance (#62) #54

Workflow file for this run

name: Docker build and publish
on:
workflow_dispatch:
push:
branches:
- "main"
jobs:
docker-build:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.IAM_ROLE_FOR_ECS }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build, tag, and push docker image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: auth-incd-ca
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG -t $REGISTRY/$REPOSITORY:latest .
docker image push --all-tags $REGISTRY/$REPOSITORY