-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (57 loc) · 1.62 KB
/
build.yml
File metadata and controls
67 lines (57 loc) · 1.62 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
name: Build
on:
push:
branches: [ main ]
workflow_dispatch:
inputs:
branch:
description: 'Branch to deploy'
required: true
default: main
jobs:
build:
runs-on: ubuntu-latest
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
permissions:
contents: read
packages: write
steps:
- name: Slack Notification
uses: act10ns/slack@v2
with:
status: starting
- name: Checkout
uses: actions/checkout@v5
with:
submodules: true
ref: ${{ github.event.inputs.branch || github.ref }}
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Setup JDK
uses: actions/setup-java@v5
with:
java-version: 25
distribution: temurin
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
- name: Execute Gradle build
run: ./gradlew bootBuildImage --scan --imageName=${{ steps.meta.outputs.tags }}
- name: Push Image
run: docker push ${{ steps.meta.outputs.tags }}
- name: Slack Notification
uses: act10ns/slack@v2
if: always()
with:
status: ${{ job.status }}