Merge pull request #276 from arkedge/use-renovate-sharable-config-pre… #718
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 / container image | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
paths: | |
- 'Dockerfile' | |
- '.dockerignore' | |
- '.github/workflows/build-image.yml' | |
merge_group: | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/[email protected] | |
with: | |
tags: | | |
type=semver,pattern={{version}} | |
type=ref,event=branch | |
type=ref,event=pr | |
type=sha | |
images: ${{ secrets.ECR_URL }}/${{ github.repository }} | |
- name: Set up Buildx | |
uses: docker/[email protected] | |
- name: configure aws credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: ${{ secrets.IAM_ROLE }} | |
aws-region: ap-northeast-1 | |
- name: Login to Amazon ECR | |
uses: docker/[email protected] | |
with: | |
registry: ${{ secrets.ECR_URL }} | |
- name: Build and Push | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |