diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a667bc1..3dbab93 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,15 +26,18 @@ jobs: cd ./src/main/resources touch ./firebase-service-key.json echo "${{ secrets.FIREBASE_KEY }}" > ./firebase-service-key.json - cat firebase-service-key.json - cd . - ls -al shell: bash - name: Build with Gradle run: | chmod +x ./gradlew ./gradlew clean build -x test + shell: bash + + - name: Verify JAR contents + run: | + jar tf build/libs/*.jar | grep firebase-service-key.json + shell: bash - name: Docker build & push to docker repo run: | diff --git a/build.gradle b/build.gradle index 9ccb9e8..51b5386 100644 --- a/build.gradle +++ b/build.gradle @@ -31,6 +31,7 @@ def queryDslVersion = '5.0.0' dependencies { // Spring boot web + implementation 'org.springframework.boot:spring-boot-starter' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'