-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (46 loc) · 1.2 KB
/
tagged-build-push.yaml
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
name: Tagged Docker Hub CI
on:
# push:
# tags: [ "v*" ]
create:
tags: [ "v*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/[email protected]
-
name: Set up QEMU
uses: docker/[email protected]
-
name: Docker meta
id: meta
uses: docker/[email protected]
with:
images: |
${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
flavor: |
latest=auto
-
name: Set up Docker Buildx
uses: docker/[email protected]
-
name: Login to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Tagged build and push
uses: docker/[email protected]
with:
file: ./app/Dockerfile
context: ./app
push: true
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64,linux/arm64