diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c838695..730ebb3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,8 +14,8 @@ jobs: ENV_PROD_BASE64: ${{ secrets.ENV_PROD_BASE64 }} ENV_DEV_BASE64: ${{ secrets.ENV_DEV_BASE64 }} run: | - echo $ENV_PROD_BASE64 | base64 -di > .env/prod.json - echo $ENV_DEV_BASE64 | base64 -di > .env/dev.json + echo $ENV_PROD_BASE64 | base64 -d > .env/prod.json + echo $ENV_DEV_BASE64 | base64 -d > .env/dev.json - name: Set up JDK uses: actions/setup-java@v4 with: