Using the ARN directly #14
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 and upload docker image | |
on: | |
push: | |
branches: | |
- '**' | |
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 | |
permissions: | |
id-token: write # for JWT request | |
contents: read # for actions/checkout | |
jobs: | |
docker-image-build: | |
name: docker-image-build | |
runs-on: ubuntu-latest | |
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 | |
- name: Checkout repo | |
uses: actions/[email protected] | |
- name: Configure AWS Credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: arn:aws:iam::860619597616:oidc-provider/token.actions.githubusercontent.com | |
aws-region: eu-west-2 | |
audience: sts.amazonaws.com | |
role-session-name: github-aws-access | |
- 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: fb-editor | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
docker -f docker/web/Dockerfile build -t ${REGISTRY}/${REPOSITORY}:${IMAGE_TAG} . | |
docker tag ${REPOSITORY}:${IMAGE_TAG} ${REGISTRY}/${REPOISTORY}:${IMAGE_TAG} | |
docker push ${REGISTRY}/${REPOSITORY}:${IMAGE_TAG} |