-
-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (58 loc) · 1.73 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
54
55
56
57
58
name: "Build"
on:
- push
jobs:
build:
name: "Build on JDK ${{ matrix.jdk }}"
runs-on: ubuntu-latest
strategy:
matrix:
jdk:
- 21
steps:
- uses: actions/checkout@v4
- name: "Set up JDK ${{ matrix.jdk }}"
uses: actions/setup-java@v4
with:
java-version: "${{ matrix.jdk }}"
distribution: "zulu"
- name: "Build with Gradle"
env:
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }}
CLOUDFLARE_DOMAIN_NAME: ${{ secrets.CLOUDFLARE_DOMAIN_NAME }}
run: ./gradlew check distTar
- name: "Upload Artifact"
uses: actions/upload-artifact@v4
with:
name: "Kotlin Application"
path: "build/distributions/ddns.tar"
retention-days: 1
build-and-push-image:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
needs: build
steps:
- name: "Checkout"
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
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@v3
- name: "Login to GHCR"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and push"
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/heapy/ddns-fullstack:main