1
+ name : Docker
2
+
3
+ on :
4
+ push :
5
+ tags : [ 'v*.*' ]
6
+ workflow_dispatch :
7
+
8
+ env :
9
+ # Use docker.io for Docker Hub if empty
10
+ REGISTRY : ghcr.io
11
+ # github.repository as <account>/<repo>
12
+ IMAGE_NAME : ${{ github.repository_owner }}/awscli-kubectl
13
+
14
+
15
+ jobs :
16
+ build :
17
+
18
+ runs-on : ubuntu-latest
19
+ permissions :
20
+ contents : read
21
+ packages : write
22
+
23
+ steps :
24
+ - name : Checkout repository
25
+ uses : actions/checkout@v2
26
+
27
+ # Login against a Docker registry except on PR
28
+ # https://github.com/docker/login-action
29
+ - name : Log into registry ${{ env.REGISTRY }}
30
+ if : github.event_name != 'pull_request'
31
+ uses : docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
32
+ with :
33
+ registry : ${{ env.REGISTRY }}
34
+ username : ${{ github.actor }}
35
+ password : ${{ secrets.GITHUB_TOKEN }}
36
+
37
+ # Extract metadata (tags, labels) for Docker
38
+ # https://github.com/docker/metadata-action
39
+ - name : Extract Docker metadata
40
+ id : meta
41
+ uses : docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
42
+ with :
43
+ images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
44
+ tags : |
45
+ type=match,pattern=v(\d+.\d+),group=1
46
+ # Build and push Docker image with Buildx (don't push on PR)
47
+ # https://github.com/docker/build-push-action
48
+ - name : Build and push Docker image
49
+ uses : docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
50
+ with :
51
+ context : .
52
+ push : ${{ github.event_name != 'pull_request' }}
53
+ tags : ${{ steps.meta.outputs.tags }}
54
+ labels : ${{ steps.meta.outputs.labels }}
0 commit comments