From fa079794de88588c489b36bc2cbdc72e455c2bb6 Mon Sep 17 00:00:00 2001 From: Matias de Andrea Date: Sun, 1 Oct 2023 12:49:36 +0200 Subject: [PATCH] ci: fix base64 generator --- .github/workflows/build.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4647b85..1a25fa3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,12 +18,11 @@ jobs: cache-key: 'flutter-:os:-:version:' cache-path: '${{ runner.tool_cache }}/flutter/:os:-:version:' - name: Retrieve the secret and decode it to a file - shell: bash env: ENV_PROD_BASE64: ${{ secrets.ENV_PROD_BASE64 }} run: | mkdir .env - echo $ENV_PROD_BASE64 | base64 -d > .env/prod.json + echo $ENV_PROD_BASE64 | base64 -di > .env/prod.json - name: Setup project run: sh setup.sh - name: Verify formated files