diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4c22cb7e..bffc0328 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,6 +26,13 @@ jobs: echo "${{ secrets.PROPERTIES }}" > ./application.yml shell: bash + - name: Make application.yml for test + run: | + cd ./src/test/resources + touch ./application.yml + echo "${{ secrets.PROPERTIES_TEST}}" > ./application.yml + shell: bash + - name: Grant execute permission for gradlew run: chmod +x ./gradlew shell: bash