Skip to content

Commit

Permalink
added firebase_options to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vodemn committed May 3, 2023
1 parent 742cb4a commit 58c52a6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,13 @@ jobs:
- name: Generate intl
run: flutter pub run intl_utils:generate

- name: Restore firebase_options.dart
env:
FIREBASE_OPTIONS: ${{ 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
# run: flutter test

0 comments on commit 58c52a6

Please sign in to comment.