-
Notifications
You must be signed in to change notification settings - Fork 34
377 lines (336 loc) · 14.2 KB
/
Copy pathdocker-publish.yml
File metadata and controls
377 lines (336 loc) · 14.2 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
name: Build and Push Docker Images
on:
push:
branches:
- main
tags:
- "v*.*.*"
pull_request:
branches:
- main
workflow_dispatch:
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
jobs:
changes:
runs-on: ubuntu-latest
outputs:
backend: ${{ steps.filter.outputs.backend }}
frontend: ${{ steps.filter.outputs.frontend }}
root: ${{ steps.filter.outputs.root }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check for changes
uses: dorny/paths-filter@v3
id: filter
with:
filters: |
backend:
- 'backend/**'
- '.github/workflows/**'
frontend:
- 'frontend/**'
- '.github/workflows/**'
root:
- 'Dockerfile'
- 'config.json'
- 'frontend/**'
- 'backend/**'
- '.github/workflows/**'
build-and-push:
needs: changes
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: minepanel
dockerfile: ./Dockerfile
context: .
image: minepanel
condition: root
- name: minepanel-backend
dockerfile: ./backend/Dockerfile
context: ./backend
image: minepanel-backend
condition: backend
- name: minepanel-frontend
dockerfile: ./frontend/Dockerfile
context: ./frontend
image: minepanel-frontend
condition: frontend
steps:
- name: Checkout code
uses: actions/checkout@v4
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
- name: Read version from config.json
id: version
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
run: |
VERSION=$(jq -r '.version' config.json)
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Version detected: $VERSION"
- name: Set up QEMU
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
if: |
github.event_name != 'pull_request' && (
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
)
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata (tags, labels)
id: meta
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.image }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=${{ steps.version.outputs.version }},enable={{is_default_branch}}
- name: Build and push Docker image
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
uses: docker/build-push-action@v5
with:
context: ${{ matrix.context }}
file: ${{ matrix.dockerfile }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64,linux/arm64
- name: Image digest
if: |
(matrix.condition == 'backend' && needs.changes.outputs.backend == 'true') ||
(matrix.condition == 'frontend' && needs.changes.outputs.frontend == 'true') ||
(matrix.condition == 'root' && needs.changes.outputs.root == 'true') ||
github.event_name == 'workflow_dispatch'
run: |
echo "Image ${{ matrix.image }} built successfully"
echo "Version: ${{ steps.version.outputs.version }}"
echo " Platforms: linux/amd64, linux/arm64"
echo "Tags: ${{ steps.meta.outputs.tags }}"
create-release-tag:
needs: build-and-push
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PAT_TOKEN || secrets.GITHUB_TOKEN }}
- name: Read version from config.json
id: version
run: |
VERSION=$(jq -r '.version' config.json)
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "📦 Current version in config.json: $VERSION"
- name: Get last tag version
id: last_tag
run: |
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "none")
echo "tag=$LAST_TAG" >> $GITHUB_OUTPUT
echo "🏷️ Last tag: $LAST_TAG"
- name: Check if version changed
id: version_changed
run: |
CURRENT_VERSION="v${{ steps.version.outputs.version }}"
LAST_TAG="${{ steps.last_tag.outputs.tag }}"
if [ "$LAST_TAG" = "none" ]; then
echo "changed=true" >> $GITHUB_OUTPUT
echo "✨ No previous tags found - first release"
elif [ "$CURRENT_VERSION" = "$LAST_TAG" ]; then
echo "changed=false" >> $GITHUB_OUTPUT
echo "⏭️ Version unchanged ($CURRENT_VERSION = $LAST_TAG) - skipping tag"
else
echo "changed=true" >> $GITHUB_OUTPUT
echo "🆕 Version changed: $LAST_TAG → $CURRENT_VERSION"
fi
- name: Check if tag exists
id: check_tag
if: steps.version_changed.outputs.changed == 'true'
run: |
if git rev-parse "v${{ steps.version.outputs.version }}" >/dev/null 2>&1; then
echo "exists=true" >> $GITHUB_OUTPUT
echo "⚠️ Tag v${{ steps.version.outputs.version }} already exists"
else
echo "exists=false" >> $GITHUB_OUTPUT
echo "✅ Tag v${{ steps.version.outputs.version }} does not exist - will create"
fi
- name: Verify changes were built
id: verify_changes
if: steps.version_changed.outputs.changed == 'true' && steps.check_tag.outputs.exists == 'false'
run: |
if [ "${{ needs.build-and-push.result }}" = "success" ]; then
echo "should_create=true" >> $GITHUB_OUTPUT
echo "✅ Docker images built successfully - proceeding with tag"
else
echo "should_create=false" >> $GITHUB_OUTPUT
echo "⏭️ No Docker builds ran - skipping tag"
fi
- name: Create and push tag
if: |
steps.version_changed.outputs.changed == 'true' &&
steps.check_tag.outputs.exists == 'false' &&
steps.verify_changes.outputs.should_create == 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag -a "v${{ steps.version.outputs.version }}" -m "Release v${{ steps.version.outputs.version }}"
git push origin "v${{ steps.version.outputs.version }}"
- name: Tag created
if: |
steps.version_changed.outputs.changed == 'true' &&
steps.check_tag.outputs.exists == 'false' &&
steps.verify_changes.outputs.should_create == 'true'
run: |
echo "✅ Tag v${{ steps.version.outputs.version }} created successfully"
echo "🚀 GitHub Release will be created automatically"
- name: Skip reason
if: |
steps.version_changed.outputs.changed == 'false' ||
steps.check_tag.outputs.exists == 'true' ||
steps.verify_changes.outputs.should_create == 'false'
run: |
echo "ℹ️ Tag creation skipped"
if [ "${{ steps.version_changed.outputs.changed }}" = "false" ]; then
echo " Reason: Version in config.json hasn't changed"
elif [ "${{ steps.check_tag.outputs.exists }}" = "true" ]; then
echo " Reason: Tag already exists"
else
echo " Reason: No significant changes to build"
fi
create-github-release:
name: Create GitHub Release
needs: create-release-tag
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Read version from config.json
id: version
run: |
VERSION=$(jq -r '.version' config.json)
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Version: $VERSION"
- name: Get last tag version
id: last_tag
run: |
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "none")
echo "tag=$LAST_TAG" >> $GITHUB_OUTPUT
- name: Check if should create release
id: should_release
run: |
CURRENT_VERSION="v${{ steps.version.outputs.version }}"
LAST_TAG="${{ steps.last_tag.outputs.tag }}"
if [ "$LAST_TAG" = "none" ] || [ "$CURRENT_VERSION" != "$LAST_TAG" ]; then
if git rev-parse "$CURRENT_VERSION" >/dev/null 2>&1; then
echo "create=true" >> $GITHUB_OUTPUT
echo "✅ Will create release for $CURRENT_VERSION"
else
echo "create=false" >> $GITHUB_OUTPUT
echo "⏭️ Tag $CURRENT_VERSION doesn't exist yet - skipping release"
fi
else
echo "create=false" >> $GITHUB_OUTPUT
echo "⏭️ No new version - skipping release"
fi
- name: Create Release
if: steps.should_release.outputs.create == 'true'
uses: softprops/action-gh-release@v1
with:
tag_name: v${{ steps.version.outputs.version }}
name: Minepanel v${{ steps.version.outputs.version }}
body: |
## 🎮 Minepanel v${{ steps.version.outputs.version }}
### 🐳 Docker Images
Docker images are available for multiple architectures (amd64, arm64):
**Full Stack (Recommended)**:
```bash
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/minepanel:${{ steps.version.outputs.version }}
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/minepanel:latest
```
**Backend Only**:
```bash
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/minepanel-backend:${{ steps.version.outputs.version }}
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/minepanel-backend:latest
```
**Frontend Only**:
```bash
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/minepanel-frontend:${{ steps.version.outputs.version }}
docker pull ${{ secrets.DOCKERHUB_USERNAME }}/minepanel-frontend:latest
```
### 🚀 Quick Start
```bash
docker run -d \
-p 3000:3000 \
-p 8080:8080 \
--name minepanel \
${{ secrets.DOCKERHUB_USERNAME }}/minepanel:${{ steps.version.outputs.version }}
```
### 📦 What's Included
- Multi-language support (English, Spanish, Dutch)
- Easy server connection management
- Real-time server monitoring
- Modern and responsive UI
- Multi-architecture support (amd64, arm64)
### 🔗 Links
- [Documentation](https://github.com/${{ github.repository }})
- [Report Issues](https://github.com/${{ github.repository }}/issues)
- [Source Code](https://github.com/${{ github.repository }})
draft: false
prerelease: false
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Release created
if: steps.should_release.outputs.create == 'true'
run: |
echo "✅ Release v${{ steps.version.outputs.version }} created successfully!"
echo "🐳 Docker images are now available"
echo "📦 Supports linux/amd64 and linux/arm64"