From 580ccb6f8de180ea847bac8de42e347d3f6d8d7f Mon Sep 17 00:00:00 2001 From: Yimura <24669514+Yimura@users.noreply.github.com> Date: Sun, 15 Sep 2024 22:55:22 +0200 Subject: [PATCH] fix(CI): non existent folder --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f48493..01e2180 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,8 @@ jobs: run: | echo $ENCODED_STRING > keystore-b64.txt - base64 -d keystore-b64.txt > keystore.jks + mkdir -p keystore + base64 -d keystore-b64.txt > keystore/keystore.jks - name: Ensure gradlew execute flags run: |