Skip to content

Use DEPLOY_IAM_ROLE as secret #3

Use DEPLOY_IAM_ROLE as secret

Use DEPLOY_IAM_ROLE as secret #3

Workflow file for this run

name: Build Vigilo image and push to ECR
on:

Check failure on line 2 in .github/workflows/build-image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-image.yml

Invalid workflow file

You have an error in your yaml syntax on line 2
push:
branches:
- main
# Allow running this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build_image:
name: Build Vigilo image and push to ECR
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.DEPLOY_IAM_ROLE }}
aws-region: us-east-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Build, Tag, and Push Image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: vigilo
DOCKER_TAG: ${{ github.sha }}
run: |
docker build -t $REGISTRY/$REPOSITORY:$DOCKER_TAG -f Dockerfile .
docker tag $REGISTRY/$REPOSITORY:$DOCKER_TAG $REGISTRY/$REPOSITORY:latest
docker push $REGISTRY/$REPOSITORY:$DOCKER_TAG
docker push $REGISTRY/$REPOSITORY:latest