-
Notifications
You must be signed in to change notification settings - Fork 4
202 lines (170 loc) · 5.85 KB
/
release.yml
File metadata and controls
202 lines (170 loc) · 5.85 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
name: Release Docker Image
on:
workflow_call:
inputs:
benchmark_results:
description: 'Benchmark results from k6'
required: false
type: string
secrets:
DOCKERHUB_USERNAME:
required: true
DOCKERHUB_TOKEN:
required: true
workflow_dispatch:
permissions:
contents: write
packages: write
jobs:
build-full:
name: Build Full Image
runs-on: ubuntu-latest
outputs:
tags: ${{ steps.meta.outputs.tags }}
version: ${{ steps.meta.outputs.version }}
labels: ${{ steps.meta.outputs.labels }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
replane/replane
ghcr.io/replane-dev/replane
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Set up QEMU (multi-arch)
uses: docker/setup-qemu-action@v3
- name: Set up Buildx
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Enable corepack
run: corepack enable
- name: Build and push image (full with bundled PostgreSQL)
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
NEXT_PUBLIC_BUILD_SHA=${{ github.sha }}
EMBEDDED_POSTGRES=true
build-slim:
name: Build Slim Image
runs-on: ubuntu-latest
outputs:
tags: ${{ steps.meta.outputs.tags }}
version: ${{ steps.meta.outputs.version }}
labels: ${{ steps.meta.outputs.labels }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
replane/replane
ghcr.io/replane-dev/replane
tags: |
type=semver,pattern={{version}}-slim
type=semver,pattern={{major}}.{{minor}}-slim
type=semver,pattern={{major}}-slim
- name: Set up QEMU (multi-arch)
uses: docker/setup-qemu-action@v3
- name: Set up Buildx
uses: docker/setup-buildx-action@v4
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Enable corepack
run: corepack enable
- name: Build and push image (slim without PostgreSQL)
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
NEXT_PUBLIC_BUILD_SHA=${{ github.sha }}
EMBEDDED_POSTGRES=false
release:
name: Create Release
runs-on: ubuntu-latest
needs: [build-full, build-slim]
steps:
- name: Summary
run: |
echo "## Published image tags" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Full (can start without an external database)" >> $GITHUB_STEP_SUMMARY
echo "${{ needs.build-full.outputs.tags }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "### Slim" >> $GITHUB_STEP_SUMMARY
echo "${{ needs.build-slim.outputs.tags }}" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
if [ -n "${{ inputs.benchmark_results }}" ]; then
echo "## Benchmark Results" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
echo "${{ inputs.benchmark_results }}" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
fi
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: Replane ${{ github.ref_name }}
generate_release_notes: true
body: |
## Docker Images
### Full (can start without an external database)
The default image includes PostgreSQL for easy single-container deployment.
```bash
docker pull replane/replane:${{ needs.build-full.outputs.version }}
```
### Slim (must connect to an external PostgreSQL database)
Use the slim image when connecting to an external PostgreSQL database.
```bash
docker pull replane/replane:${{ needs.build-slim.outputs.version }}
```
### All Published Tags
**Full:** ${{ needs.build-full.outputs.tags }}
**Slim:** ${{ needs.build-slim.outputs.tags }}
<details>
<summary>📊 Benchmark Results</summary>
```
${{ inputs.benchmark_results }}
```
</details>