-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (45 loc) · 1.16 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
name: Build
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
with:
arguments: build
- name: Upload Bundle Artifact
uses: actions/upload-artifact@v3.0.0
with:
name: beam-bundle
path: "./beam-bundle/build/libs"
- name: Upload Client Artifact
uses: actions/upload-artifact@v3.0.0
with:
name: beam-client
path: "./beam-client/build/libs"
- name: Upload Daemon Artifact
uses: actions/upload-artifact@v3.0.0
with:
name: beam-daemon
path: "./beam-daemon/build/libs"
- name: Upload UI Artifact
uses: actions/upload-artifact@v3.0.0
with:
name: beam-ui
path: "./beam-ui/build/dist"