-
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (53 loc) · 1.48 KB
/
build.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
name: "Build"
on:
- "push"
jobs:
build:
name: "Build on JDK ${{ matrix.jdk }}"
runs-on: ubuntu-latest
strategy:
matrix:
jdk:
- 17
steps:
- uses: actions/checkout@v3
- name: "Set up JDK ${{ matrix.jdk }}"
uses: actions/setup-java@v3
with:
java-version: "${{ matrix.jdk }}"
distribution: "zulu"
- name: "Build with Gradle"
run: ./gradlew check distTar
- name: "Upload Artifact"
uses: actions/upload-artifact@v3
with:
name: "Kotlin Application"
path: "build/distributions/ddns.tar"
retention-days: 1
build-and-push-image:
runs-on: ubuntu-latest
needs: build
steps:
- name: "Checkout"
uses: actions/checkout@v3
- uses: actions/download-artifact@v3
with:
name: "Kotlin Application"
path: "build/distributions/"
- name: "Untar files"
run: mkdir -p build/install && tar -xvf build/distributions/ddns.tar -C $_
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v2
- name: "Login to GHCR"
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and push"
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: |
ghcr.io/heapy/ddns-fullstack:main