-
Notifications
You must be signed in to change notification settings - Fork 7
104 lines (87 loc) · 3.03 KB
/
docker-publish.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Docker
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on:
workflow_call:
inputs:
version:
description: 'Git reference to extract version from to build a Docker image for.'
required: true
type: string
secrets:
DOCKERHUB_USERNAME:
required: true
DOCKERHUB_TOKEN:
required: true
workflow_dispatch:
inputs:
version:
description: 'Published version on PyPI to build a Docker image for.'
required: true
env:
IMAGE_NAME: jgosmann/dmarc-metrics-exporter
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Set version from ref
id: version
run: REF=${{ inputs.version }}; TAG=${REF#refs/*/}; echo "version=${TAG#v}" >> $GITHUB_OUTPUT
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
- name: Check if prerelease
id: check-prerelease
uses: ./.github/actions/check-prerelease
with:
version: ${{ steps.version.outputs.version }}
- name: Get latest release
id: latest-version
uses: ./.github/actions/get-latest-release
with:
package: dmarc-metrics-exporter
- name: Set tags
id: set-tags
shell: bash
run: |
{
echo 'TAGS<<EOF'
echo ${{ env.IMAGE_NAME }}:${{ steps.version.outputs.version }}
[ ${{ steps.version.outputs.version }} = ${{ steps.latest-version.outputs.latest_version }} ] \
&& [ ${{ steps.check-prerelease.outputs.prerelease }} != true ] \
&& echo ${{ env.IMAGE_NAME }}:latest
echo EOF
} >> "$GITHUB_OUTPUT"
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.set-tags.outputs.TAGS }}
platforms: linux/amd64,linux/arm64
labels: ${{ steps.meta.outputs.labels }}
build-args: "version=${{ steps.version.outputs.version }}"