From a0f5420c8de33cb6b9c40b642d41b21a52c48d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9E=84=ED=98=95=EC=9A=B0?= Date: Tue, 5 Dec 2023 01:48:05 +0900 Subject: [PATCH] Update cicd.yml --- .github/workflows/cicd.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index e6348cd..2b92a6a 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -48,6 +48,13 @@ jobs: echo "${{ secrets.APPLICATION_YML_DEV }}" | base64 --decode > ./application.yml shell: bash + - name: Make 'keystore.p12' + run: | + cd ./src/main/resources + touch ./keystore.p12 + echo "${{ secrets.KEYSTORE }}" | base64 --decode > ./keystore.p12 + shell: bash + - name: Grant execute permission for gradlew run: chmod +x gradlew