-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (85 loc) · 2.47 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
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
name: "Build"
on:
- push
- pull_request
jobs:
check:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn install --check-cache
working-directory: frontend
build-backend:
name: "Build Backend Application"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "liberica"
- run: ./gradlew check distTar
- uses: actions/upload-artifact@v4
with:
name: "Backend Application"
path: "build/distributions/backend.tar"
retention-days: 1
build-frontend:
name: "Build Frontend Application"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- working-directory: frontend
run: yarn install
- working-directory: frontend
run: yarn run build
- uses: actions/upload-artifact@v4
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
needs:
- build-backend
- build-frontend
steps:
- name: "Checkout"
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: "Backend Application"
path: "build/distributions/"
- name: "Untar files"
run: mkdir -p build/install && tar -xvf build/distributions/backend.tar -C $_
- uses: actions/download-artifact@v4
with:
name: "Frontend Application"
path: "frontend/dist/"
- name: "Set up QEMU"
uses: docker/setup-qemu-action@v3
- 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:
platforms: linux/amd64,linux/arm64
context: .
push: true
tags: |
ghcr.io/heapy/komok:main
ghcr.io/heapy/komok:b${{ github.run_number }}