-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (85 loc) · 2.43 KB
/
backend.yaml
File metadata and controls
101 lines (85 loc) · 2.43 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
name: Build Cupcake
on:
push:
branches:
- main
tags-ignore:
- '**'
paths:
- backend/**
- .github/workflows/backend.yaml
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: '22'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6
- name: Test
run: ./gradlew clean check
working-directory: backend
- name: Set up QEMU
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Login to GHCR
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v6
with:
images: ghcr.io/javabin/cupcake
tags: |
type=ref,event=branch
type=ref,event=tag
type=sha,format=short
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push
uses: docker/build-push-action@v7
with:
context: ./backend
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Create staging
if: github.ref == 'refs/heads/main'
run: |
docker buildx imagetools create \
--tag ghcr.io/javabin/cupcake:staging \
ghcr.io/javabin/cupcake:latest
- name: Generate summary
run: |
echo "Tag: ${{ github.sha }}" >> $GITHUB_STEP_SUMMARY
working-directory: backend
- name: Upload reports if failed
if: failure()
uses: actions/upload-artifact@v7
with:
name: cupcake-reports
path: |
backend/**/build/reports/
backend/**/build/test-results/
- name: Upload coverage if passed
if: success()
uses: actions/upload-artifact@v7
with:
name: cupcake-coverage
path: |
backend/**/build/reports/jacoco/