From a7c381b5cd239f61798daabf12b1560be3d77647 Mon Sep 17 00:00:00 2001 From: KWY Date: Fri, 31 May 2024 18:30:13 +0900 Subject: [PATCH] =?UTF-8?q?#T-10855=20[feat]=20cd=20workflow=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit apple secret key 생성 로직 구현 --- .github/workflows/cd-dev.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/cd-dev.yml b/.github/workflows/cd-dev.yml index 44d549ad..cb374a49 100644 --- a/.github/workflows/cd-dev.yml +++ b/.github/workflows/cd-dev.yml @@ -31,6 +31,12 @@ jobs: echo "${{ secrets.APPLICATION_DEV }}" >> ./application-dev.yml cat ./application-dev.yml + - name: 'Get key from Github Secrets' + run: | + pwd + mkdir -p ./operation-api/src/main/resources/static + echo "${{ secrets.APPLE_KEY }}" | base64 --decode > ./operation-api/src/main/resources/static/${{ secrets.APPLE_KEY_NAME }} + - name: Build with Gradle run: ./gradlew build shell: bash