ci: use aws role #27
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 Docker image | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 1 * *" # Every month | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Amazon ECR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.ECR_PUBLISHER_ROLE_ARN }} | |
aws-region: us-east-1 | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
with: | |
registry-type: public | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/[email protected] | |
with: | |
tags: | | |
type=ref,event=branch | |
type=ref,event=tag | |
type=sha | |
type=raw,value=latest,enable={{is_default_branch}} | |
images: public.ecr.aws/luminsports/nginx-h5bp | |
- name: Build and push Docker image | |
uses: docker/[email protected] | |
with: | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |