-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (66 loc) · 2.19 KB
/
docker-build-template.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
name: Build artifact and push
on:
workflow_call:
inputs:
appName:
description: "Application module name"
required: true
type: string
buildWithGradle:
description: If true, runs ./gradlew build
required: false
default: true
type: boolean
env:
IS_TAG_BUILD: ${{ startsWith(github.ref, 'refs/tags/') }}
REGISTRY: ghcr.io
jobs:
build-and-push-docker:
permissions:
contents: read
packages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set docker image env var
run: |
printf "DOCKER_IMAGE=%s/%s/%s:%s\n" \
"${REGISTRY}" \
"${{ github.repository_owner }}" \
"${{ inputs.appName }}" \
"${{ env.IS_TAG_BUILD == 'true' && github.ref_name || format('main-{0}', github.event.pull_request.head.sha || github.sha) }}" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up JDK 21
if : ${{ inputs.buildWithGradle }}
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Setup Gradle
if : ${{ inputs.buildWithGradle }}
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
if : ${{ inputs.buildWithGradle }}
run: ./gradlew build --build-cache --info
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Build and push Docker images
uses: docker/build-push-action@v6
with:
context: ./${{ inputs.appName }}
platforms: linux/amd64,linux/arm64
push: true
provenance: false # to avoid unknown/unknown
tags: |
${{ env.DOCKER_IMAGE }}
${{ env.IS_TAG_BUILD == 'false' && format('{0}-gh{1}', env.DOCKER_IMAGE, github.run_id) || '' }}