diff --git a/.gitea/workflows/build-apk.yml b/.gitea/workflows/build-apk.yml index 93e4a0b..c7b3c7b 100644 --- a/.gitea/workflows/build-apk.yml +++ b/.gitea/workflows/build-apk.yml @@ -15,8 +15,8 @@ jobs: - name: Setup keystore and environment run: | - echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > app/key.jks - echo "${{ secrets.DOTENV_BASE64 }}" | base64 -d > .build/release/.env + echo "${{ secrets.KEYSTORE_BASE64 }}" | tr -d '\n' | base64 -d > app/key.jks + echo "${{ secrets.DOTENV_BASE64 }}" | tr -d '\n' | base64 -d > .build/release/.env - name: Build APK working-directory: .build/release