-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (51 loc) · 1.29 KB
/
build-image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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