-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (43 loc) · 1.23 KB
/
docker-image.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
name: Build and push Docker image
on:
workflow_dispatch:
push:
jobs:
build-and-push-docker-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Login to the GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and push Docker image
run: ./gradlew pushImage
delete-untagged-docker-images:
needs: build-and-push-docker-image
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Delete untagged Docker images
uses: actions/delete-package-versions@v4
with:
package-name: clara-app
package-type: container
min-versions-to-keep: 0
delete-only-untagged-versions: true