From 768d314ef76319484320d8416c66ae76e9926f7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A4=EC=B0=AC=ED=98=B8?= <108210104+yooooonshine@users.noreply.github.com> Date: Wed, 31 Jul 2024 12:48:21 +0900 Subject: [PATCH] Update gradle.yml --- .github/workflows/gradle.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 7bdb76b4..e329011a 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -28,6 +28,16 @@ jobs: java-version: '17' distribution: 'temurin' + - uses: actions/checkout@v4 + - run: touch ./src/main/resources/application-api.properties + - run: echo "${{ secrets.API_PROPERTIES }}" > ./src/main/resources/application-api.properties + - run: cat ./src/main/resources/application-api.properties + + - uses: actions/checkout@v4 + - run: touch ./src/main/resources/application-security.properties + - run: echo "${{ secrets.SECURITY_PROPERTIES }}" > ./src/main/resources/application-security.properties + - run: cat ./src/main/resources/application-security.properties + # Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. # See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md - name: Setup Gradle