From 838ebb702a7a1006b0a2ebd91d8e35e215f92b81 Mon Sep 17 00:00:00 2001 From: Wibaek Park <34394229+wibaek@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:15:22 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20workflows/release=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=20(#122)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 수동으로 환경변수에 지정한 yml을 불러오는 것이 아닌, 서브모듈 불러오게 수정 #54 가 적용되었다 생각했는데, closed 되어있어 착각했습니다.. --- .github/workflows/release.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0dbdd061d..e7262baa7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,13 +13,11 @@ jobs: steps: - uses: actions/checkout@v4 + with: + - name: Set secret files + token: ${{ secrets.SUBMODULE_ACCESS_TOKEN }} + submodules: true - - name: Create application-secret.yml - run: echo "${{ secrets.APPLICATION_SECRET }}" > src/main/resources/application-secret.yml - - - name: Create application-prod.yml - run: echo "${{ secrets.APPLICATION_PROD }}" > src/main/resources/application-prod.yml - - name: Set up JDK 17 uses: actions/setup-java@v4 with: