Skip to content

Commit

Permalink
Merge pull request #7 from RomanMager/issue-6
Browse files Browse the repository at this point in the history
Add gradle.yml build workflow
  • Loading branch information
leingenm authored Mar 24, 2024
2 parents bd193d1 + b45c24e commit 888d9dd
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
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 spring.config.import
uses: fjogeleit/yaml-update-action@main
with:
valueFile: ./src/main/resources/application.yml
propertyPath: 'spring.config.import'
value: 'classpath:application.yml'
commitChange: false
createPR: false

- name: Update application.yml google.client-id
uses: fjogeleit/yaml-update-action@main
with:
valueFile: ./src/main/resources/application.yml
propertyPath: 'spring.security.oauth2.client.registration.google["client-id"]'
value: 'dummy'
commitChange: false
createPR: false

- name: Update application.yml google.client-secret
uses: fjogeleit/yaml-update-action@main
with:
valueFile: ./src/main/resources/application.yml
propertyPath: 'spring.security.oauth2.client.registration.google["client-secret"]'
value: 'dummy'
commitChange: false
createPR: false

- name: Build with Gradle Wrapper
run: ./gradlew build
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "youtube-playlist-manager"
rootProject.name = "ypm"
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spring:

# Spring
application:
name: youtube-playlist-manager
name: ypm
security:
oauth2:
client:
Expand Down

0 comments on commit 888d9dd

Please sign in to comment.