Skip to content

Start of the GitHub CI workflow for docker image building #1

Start of the GitHub CI workflow for docker image building

Start of the GitHub CI workflow for docker image building #1

Workflow file for this run

name: Build and upload docker image
permissions:
id-token: write # for JWT request
contents: read # for actions/checkout
on:
workflow_dispatch:
inputs:
debug_enabled:
type: boolean
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
push:
branches:
- '**'
jobs:
docker-image-build:
name: deploy
description: Build and upload docker image to ECR

Check failure on line 22 in .github/workflows/build_image.yaml

View workflow run for this annotation

GitHub Actions / Build and upload docker image

Invalid workflow file

The workflow is not valid. .github/workflows/build_image.yaml (Line: 22, Col: 5): Unexpected value 'description'
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
with:
limit-access-to-actor: true
- uses: actions/[email protected]
- name: Configure AWS Credentials
uses: aws-actions/[email protected]
with:
role-to-assume: ${{ vars.AWS_ROLE_TO_ASSUME }}
aws-region: eu-west-2
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/[email protected]
- name: Build, tag, and push docker image to Amazon ECR
env:
REGISTRY: ${{ steps.login-ecr.outputs.registry }}
REPOSITORY: your-repo
IMAGE_TAG: ${{ github.sha }}
run: |
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG .
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG