From 4c1fc9a320c9faead893de3f2dc3a103f9f22a60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=8B=A0=EC=98=88=EC=B0=AC?= <88381563+YeaChan05@users.noreply.github.com> Date: Fri, 9 Feb 2024 17:55:40 +0900 Subject: [PATCH] Update pull-request-intergration.yml --- .github/workflows/pull-request-intergration.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-intergration.yml b/.github/workflows/pull-request-intergration.yml index 1764a6a09..1de83a06a 100644 --- a/.github/workflows/pull-request-intergration.yml +++ b/.github/workflows/pull-request-intergration.yml @@ -70,9 +70,12 @@ jobs: with: java-version: 17 distribution: 'corretto' + - run: touch ./src/main/resources/application-secret.yml + - run: echo "${{ secrets.SECRET_KEY }}" > ./src/main/resources/application-secret.yml + - run: cat ./src/main/resources/application-secret.yml - name: Build with Gradle run: ./gradlew build -x test - + test: needs: [ setup, build ] runs-on: ubuntu-latest @@ -84,6 +87,9 @@ jobs: with: java-version: 17 distribution: 'corretto' + - run: touch ./src/main/resources/application-secret.yml + - run: echo "${{ secrets.SECRET_KEY }}" > ./src/main/resources/application-secret.yml + - run: cat ./src/main/resources/application-secret.yml - name: Test with Gradle run: ./gradlew test