-
Notifications
You must be signed in to change notification settings - Fork 0
107 lines (107 loc) · 3.23 KB
/
Copy pathbuild.yml
File metadata and controls
107 lines (107 loc) · 3.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: "Build"
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
concurrency:
group: "build-${{ github.ref }}"
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
check:
name: "Validate Yarn Cache"
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: "22.x"
cache: "yarn"
cache-dependency-path: "frontend/yarn.lock"
- run: yarn install --check-cache
working-directory: frontend
build-backend:
name: "Build Backend Application"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-java@v6.0.1
with:
java-version: "25"
distribution: "corretto"
- uses: gradle/actions/setup-gradle@v6
- name: "Cache Kotlin/Native toolchain"
uses: actions/cache@v6
with:
path: ~/.konan
key: "konan-${{ runner.os }}-${{ hashFiles('gradle/libs.versions.toml') }}"
restore-keys: "konan-${{ runner.os }}-"
- run: ./gradlew check distTar
- uses: actions/upload-artifact@v7
with:
name: "Backend Application"
path: "komok-app/build/distributions/komok-app.tar"
retention-days: 1
build-frontend:
name: "Build Frontend Application"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: "22.x"
cache: "yarn"
cache-dependency-path: "frontend/yarn.lock"
- working-directory: frontend
run: yarn install
- working-directory: frontend
run: yarn run build
- uses: actions/upload-artifact@v7
with:
name: "Frontend Application"
path: "frontend/dist/"
retention-days: 1
build-and-push-backend-image:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs:
- build-backend
- build-frontend
steps:
- name: "Checkout"
uses: actions/checkout@v7
- uses: actions/download-artifact@v8
with:
name: "Backend Application"
path: "komok-app/build/distributions/"
- name: "Untar files"
run: mkdir -p komok-app/build/distributions && tar -xvf komok-app/build/distributions/komok-app.tar -C $_
- uses: actions/download-artifact@v8
with:
name: "Frontend Application"
path: "frontend/dist/"
- name: "Set up QEMU"
uses: docker/setup-qemu-action@v4
- name: "Set up Docker Buildx"
uses: docker/setup-buildx-action@v4
- name: "Login to GHCR"
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build and push"
uses: docker/build-push-action@v7
with:
platforms: linux/amd64,linux/arm64
context: .
push: true
tags: |
ghcr.io/heapy/komok:main
ghcr.io/heapy/komok:b${{ github.run_number }}