From e5a3acb5f12d279c62e8132dbfa8bc1c8437b8ef Mon Sep 17 00:00:00 2001 From: KWY Date: Fri, 31 May 2024 17:58:36 +0900 Subject: [PATCH] =?UTF-8?q?#T-10855=20[ci]=20workflow=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1812ca5b..3552f6fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: - name: 'Get key from Github Secrets' run: | mkdir -p src/main/resources/static - echo "${{ secrets.APPLE_KEY }}" | base64 -d > src/main/resources/static/${{ secrets.APPLE_KEY_NAME }} + echo "${{ secrets.APPLE_KEY }}" | tr -d '\n' | base64 --decode > src/main/resources/static/${{ secrets.APPLE_KEY_NAME }} - name: Build with Gradle run: ./gradlew build