diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5302d73..876bf21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,6 +41,14 @@ jobs: - name: Generate intl run: flutter pub run intl_utils:generate + - name: Restore firebase_options.dart + env: + KEYSTORE: ${{ secrets.FIREBASE_OPTIONS }} + run: | + FIREBASE_OPTIONS_PATH=$RUNNER_TEMP/firebase_options.dart + echo -n "$FIREBASE_OPTIONS" | base64 --decode --output $FIREBASE_OPTIONS_PATH + cp $FIREBASE_OPTIONS_PATH ./lib + - name: Analyze project source run: flutter analyze lib --fatal-infos # - name: Run tests