-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 1009 Bytes
/
build.yml
File metadata and controls
40 lines (34 loc) · 1009 Bytes
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
name: 🏗️ Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: 🧱️ Build and Test
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: 📥 Clone Repository
uses: actions/checkout@v4
- name: ☕ Setup JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'adopt'
# https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#incompatibility-with-other-caching-mechanisms
- name: 🛠️ Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
validate-wrappers: true
cache-disabled: false
# Without Test 🧪
- name: 📥 Build
run: ./gradlew build --stacktrace -x jsTest -x jsBrowserTest
- name: 🚀 Deploy
if: github.ref == 'refs/heads/main'
env:
deploy_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
run: |
curl "$deploy_url"