-
Notifications
You must be signed in to change notification settings - Fork 62
53 lines (48 loc) · 1.89 KB
/
publish_docker_image.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
50
51
52
53
name: Publish Docker image
on:
release:
types: [published]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
# Workaround: https://github.com/docker/build-push-action/issues/461
- name: Setup Docker buildx
uses: docker/[email protected]
- name: Set up QEMU
uses: docker/[email protected]
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Get latest git tag
id: latest_tag
uses: 'WyriHaximus/github-action-get-previous-tag@v1'
with:
fallback: no-tag
- name: Get major version
id: major_version
run: |
echo "version=$(echo ${{ steps.latest_tag.outputs.tag }} | cut -d'.' -f1)" >> $GITHUB_OUTPUT
- name: Push to Docker Hub
uses: docker/build-push-action@v4
with:
platforms: linux/amd64, linux/arm64
push: true
tags: hemmeligapp/hemmelig:latest
- name: Push to Docker Hub
uses: docker/build-push-action@v4
with:
platforms: linux/amd64, linux/arm64
push: true
tags: hemmeligapp/hemmelig:${{ steps.latest_tag.outputs.tag }}
- name: Push to Docker Hub
uses: docker/build-push-action@v4
with:
platforms: linux/amd64, linux/arm64
push: true
tags: hemmeligapp/hemmelig:${{ steps.major_version.outputs.version }}