Skip to content

WIP: sketch out deployment script structure using Ludos as guideline #3

WIP: sketch out deployment script structure using Ludos as guideline

WIP: sketch out deployment script structure using Ludos as guideline #3

name: Build AOE Semantic Apis
on:
workflow_dispatch:
push:
paths:
- '.github/workflows/build-semantic-apis.yml'
- 'aoe-semantic-apis/**'
permissions:
id-token: write
contents: read
jobs:
build-and-deploy-container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.AWS_AOE_UTILITY_ROLE_ARN }}
role-session-name: aoe-semantic-api-runner-ecr-push
aws-region: eu-west-1
- 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: aoe-semantic-apis
IMAGE_TAG: ga-${{ github.run_number }}
run: |
cd aoe-semantic-apis
docker build -t $REGISTRY/$REPOSITORY:$IMAGE_TAG ../aoe-semantic-apis --file docker/Dockerfile
docker push $REGISTRY/$REPOSITORY:$IMAGE_TAG