-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (63 loc) · 1.87 KB
/
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
name: Publish
on:
push:
branches: [ main ]
tags: [ '*' ]
env:
GO_VERSION: ~1.22
jobs:
publish:
name: Build and publish operator image
runs-on: ubuntu-latest
outputs:
image_tag: ${{ steps.meta.outputs.version }}
permissions:
contents: 'write'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
- name: OCI Metadata for multi-arch image
id: meta
uses: docker/metadata-action@v5
with:
images: |
drpsychick/mailu-operator
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# pushes a) "main" or b) $TAG+"latest"
- name: Build and push
env:
VERSION: ${{ steps.meta.outputs.version }}
run: make docker-buildx
# main branch must contain the latest install.yaml already with the right tag ("main" or $TAG)
# - name: Build operator install manifest
# env:
# VERSION: ${{ steps.meta.outputs.version }}
# run: |
# make build-installer
#
# - name: Commit operator install manifest
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# file_pattern: 'dist/*.yaml'
# pushing a tag will trigger this
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
generate_release_notes: true