Publish ECR eksctl-build image #25
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: Publish ECR eksctl-build image | |
on: workflow_dispatch | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
build-and-push-to-registry: | |
name: Build and push container image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Setup build environment | |
uses: ./.github/actions/setup-build | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | |
with: | |
aws-region: us-east-1 | |
role-duration-seconds: 7200 | |
role-session-name: eksctl-build-ecr-publisher | |
role-to-assume: ${{ secrets.ECR_PUBLISH_ROLE_ARN }} | |
- name: Login to Amazon ECR Public | |
id: login-ecr-public | |
uses: aws-actions/amazon-ecr-login@062b18b96a7aff071d4dc91bc00c4c1a7945b076 # v1 | |
with: | |
registry-type: public | |
- name: Build and push image | |
run: | | |
PATH=$PATH:$(go env GOPATH)/bin make -f Makefile.docker push-build-image |