-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 1.05 KB
/
gradle.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
name: Java CI with Gradle
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
- name: Update application.yml
uses: fjogeleit/yaml-update-action@main
with:
commitChange: false
createPR: false
changes: |
{
"./src/main/resources/application.yml": {
"spring.config.import": "classpath:application.yml",
"spring.security.oauth2.client.registration.google.client-id": "dummy",
"spring.security.oauth2.client.registration.google.client-secret": "dummy"
}
}
- name: Build with Gradle Wrapper
run: ./gradlew build