-
-
Notifications
You must be signed in to change notification settings - Fork 0
112 lines (97 loc) · 2.78 KB
/
dev-backend-release.yaml
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
name: Publish latest backend image
on:
push:
branches:
- main
jobs:
test:
name: Test Backend
runs-on: ubuntu-latest
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: 🏗️ Set up JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: ✅ Test backend
run: ./gradlew --stacktrace check
build:
name: Build Backend
runs-on: ubuntu-latest
needs:
- test
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: 🏗️ Set up JDK
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: ⚙️ Build application
run: ./gradlew --stacktrace backend:jar backend:bootJar
- name: 🗄️ Upload Artifact
uses: actions/upload-artifact@v4
with:
name: backend
path: backend/build/libs/*.jar
retention-days: 1
image:
name: Build Docker image
runs-on: ubuntu-latest
needs:
- build
permissions:
contents: read
packages: write
steps:
- name: ↩️ Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: 🗄️ Download artifact
uses: actions/download-artifact@v4
with:
name: backend
path: backend/build/libs/
- name: ℹ️ Docker meta
id: docker-meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/poeschl/roborush
tags: backend
- name: 🏗️ Install qemu dependency
uses: docker/setup-qemu-action@v3
- name: ⚙️ Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
containerfiles: backend/Dockerfile
context: backend
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}
platforms: linux/amd64,linux/arm64
# Disable layer caching
layers: false
- name: 🔑 GHCR Login
uses: redhat-actions/podman-login@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 🚀 Push images
id: push-image
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
- name: 📢 Print images summary
run: |
echo "## Build and pushed backend images" >> $GITHUB_STEP_SUMMARY
echo '${{ steps.push-image.outputs.registry-paths }}' >> $GITHUB_STEP_SUMMARY