From e9b279f263db5fe73958409c9ef3ca4a89f3dd63 Mon Sep 17 00:00:00 2001 From: yechan-kim <60172300+yechan-kim@users.noreply.github.com> Date: Sun, 25 Aug 2024 14:31:00 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20ORACLE=20DB=EC=97=90=20=EC=97=B0?= =?UTF-8?q?=EA=B2=B0=ED=95=98=EA=B8=B0=20=EC=9C=84=ED=95=9C=20OCI=20Wallet?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-cd.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index e0bb745..bce22f2 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -17,6 +17,11 @@ jobs: java-version: '17' distribution: 'corretto' + - name: Decode and Unzip OCI Wallet + run: | + echo "${{ secrets.OCI_WALLET }}" | base64 --decode > oci-wallet.zip + unzip oci-wallet.zip -d ./src/main/resources/OracleCloud + - name: Grant permission for gradlew run: chmod +x ./gradlew shell: bash