diff --git a/.github/workflows/prod-contents-deploy.yml b/.github/workflows/prod-contents-deploy.yml index 90040b0..b76bf19 100644 --- a/.github/workflows/prod-contents-deploy.yml +++ b/.github/workflows/prod-contents-deploy.yml @@ -5,7 +5,7 @@ # This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle -name: Java CI with Gradle +name: ContentsService on: push: @@ -25,7 +25,10 @@ jobs: distribution: 'temurin' - name: Clean Gradle Cache - run: ./gradlew clean + run: | + cd BE-Contents-Server + ls + ./gradlew clean - name: Make application.yml run: | @@ -35,10 +38,16 @@ jobs: APPLICATION: ${{ secrets.APPLICATION_CONTENTS }} - name: Grant execute permission for gradlew - run: chmod +x gradlew + run: | + cd BE-Contents-Server + ls + chmod +x gradlew - name: Build with Gradle - run: ./gradlew build -x test + run: | + cd BE-Contents-Server + ls + ./gradlew build -x test - name: Docker build run: |