-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (43 loc) · 1.5 KB
/
build-push-to-docker-hub.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
# This workflow builds and pushes Ampersand prototype framework images to Docker Hub
# We want to have images for branches 'main' (latest) and for all tags (i.e. releases, like e.g. v4.0.2)
# We use a Github Action from the market place. See: https://github.com/marketplace/actions/build-and-push-docker-images
name: Build push to DockerHub
on:
push:
branches: # empty list to trigger all branches
- main
tags:
- 'v*'
jobs:
build-push:
name: Build push
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
ampersandtarski/prototype-framework
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push to Docker Hub
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }} # see meta step above
labels: ${{ steps.meta.outputs.labels }}