-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
65 lines (54 loc) · 1.65 KB
/
action.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
60
61
62
63
64
65
name: "image"
description: >-
Build a docker image from Dockerfile.
The image will be pushed if the action if a tag has been pushed.
In addition to the git tag the image will tagged 'latest' if we are on the default branch.
inputs:
registry:
description: "Docker registry"
required: true
username:
description: "Username for login to registry"
required: true
password:
description: "Password for login to registry"
required: true
image:
description: "Image name"
required: true
dockerfile:
description: "Path to Dockerfile"
required: false
default: Dockerfile
runs:
using: "composite"
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker registry
uses: docker/login-action@v2
with:
registry: ${{ inputs.registry }}
username: ${{ inputs.username }}
password: ${{ inputs.password }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ inputs.registry }}/${{ inputs.image }}
tags: |
type=ref,event=tag
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push image
uses: docker/build-push-action@v3
with:
context: "."
file: ${{ inputs.dockerfile }}
push: ${{ startsWith(github.ref, 'refs/tags/') }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=${{ inputs.registry }}/${{ inputs.image }}:latest
cache-to: type=inline