-
Notifications
You must be signed in to change notification settings - Fork 1
165 lines (144 loc) · 5.4 KB
/
docker-build.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
name: Build and Publish Docker Image
on:
workflow_dispatch: # Allows manual triggering
inputs:
force:
description: "Force a new build"
required: false
default: false
type: boolean
env:
REGISTRY_IMAGE: ghcr.io/patte/convex-backend
jobs:
init:
runs-on: ubuntu-latest
steps:
- name: Get latest release tag and check for new release
id: check_release
run: |
RELEASE_TAG=$(curl -s https://api.github.com/repos/get-convex/convex-backend/releases/latest | grep "tag_name" | cut -d\" -f4)
echo "RELEASE_TAG=$RELEASE_TAG" >> $GITHUB_ENV
PREVIOUS_TAG=$(docker inspect ${{ env.REGISTRY_IMAGE }}:latest --format '{{ index .Config.Labels "org.opencontainers.image.version" }}' || echo "none")
if [ -z "$PREVIOUS_TAG" ]; then
echo "No previous image found. Proceeding with the build of release: $RELEASE_TAG."
elif [ "${{ github.event.inputs.force }}" == "true" ]; then
echo "Forced build detected. Proceeding with the build of release: $RELEASE_TAG."
elif [ "$RELEASE_TAG" == "$PREVIOUS_TAG" ]; then
echo "No new release detected. Exiting."
exit 0
else
echo "New release detected: $RELEASE_TAG"
fi
outputs:
release_tag: ${{ env.RELEASE_TAG }}
build:
needs: init
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
include:
- platform: linux/amd64
runner: ubuntu-latest
cache-from: type=gha
cache-to: type=gha,mode=max
- platform: linux/arm64
runner: self-hosted
cache-from:
cache-to:
runs-on: ${{ matrix.runner }}
steps:
- name: check for new release
run: |
if [ -z "${{ needs.init.outputs.release_tag }}" ]; then
echo "No release tag found. Exiting."
exit 0
fi
echo "RELEASE_TAG=${{ needs.init.outputs.release_tag }}" >> $GITHUB_ENV
- name: Prepare
run: |
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Docker Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push by digest
id: build
uses: docker/build-push-action@v6
with:
context: .
platforms: ${{ matrix.platform }}
build-args: |
RELEASE_TAG=${{ env.RELEASE_TAG }}
labels: |
org.opencontainers.image.version=${{ env.RELEASE_TAG }}
cache-from: ${{ matrix.cache-from }}
cache-to: ${{ matrix.cache-to }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
- name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
merge:
runs-on: ubuntu-latest
needs: [init, build]
steps:
- name: check for new release
run: |
if [ -z "${{ needs.init.outputs.release_tag }}" ]; then
echo "No release tag found. Exiting."
exit 0
fi
echo "RELEASE_TAG=${{ needs.init.outputs.release_tag }}" >> $GITHUB_ENV
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Docker Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Download digests
uses: actions/download-artifact@v4
with:
path: /tmp/digests
pattern: digests-*
merge-multiple: true
- name: Create multi-platform manifest and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create --tag ${{ env.REGISTRY_IMAGE }}:${{ env.RELEASE_TAG }} --tag ${{ env.REGISTRY_IMAGE }}:latest \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.RELEASE_TAG }}
release_name: "Release ${{ env.RELEASE_TAG }}"
body: |
This is based on convex-backend's release: [${{ env.RELEASE_TAG }}](https://github.com/get-convex/convex-backend/releases/tag/${{ env.RELEASE_TAG }}).
New Docker images have been built and are available at the following locations:
- `${{ env.REGISTRY_IMAGE }}:${{ env.RELEASE_TAG }}`
- `${{ env.REGISTRY_IMAGE }}:latest`
[convex-backend on ghcr.io](https://github.com/patte/convex-backend-docker/pkgs/container/convex-backend)
draft: false
prerelease: false