-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (43 loc) · 1.26 KB
/
build-push.yaml
File metadata and controls
48 lines (43 loc) · 1.26 KB
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
name: Reusable Workflow For Build-Push
on:
workflow_call:
inputs:
ecr-registry:
required: true
type: string
ecr-repository:
required: true
type: string
image-tag:
required: true
type: string
target:
required: false
type: string
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ inputs.ecr-registry }}/${{ inputs.ecr-repository }}:${{ inputs.image-tag }}
target: ${{ inputs.target || '' }}
cache-from: type=gha
cache-to: type=gha,mode=max
secrets: |
"github_token=${{ secrets.ACTIONS_TOKEN }}"