diff --git a/.github/workflows/cd_dev.yml b/.github/workflows/cd_dev.yml index 95ee345..6bc93ad 100644 --- a/.github/workflows/cd_dev.yml +++ b/.github/workflows/cd_dev.yml @@ -41,6 +41,14 @@ jobs: echo -n "$KEYSTORE_PROPERTIES" | base64 --decode --output $KEYSTORE_PROPERTIES_PATH cp $KEYSTORE_PROPERTIES_PATH ./android + - 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: Install Flutter uses: subosito/flutter-action@v2 with: diff --git a/.github/workflows/cd_prod.yml b/.github/workflows/cd_prod.yml index a8b5031..cc116cd 100644 --- a/.github/workflows/cd_prod.yml +++ b/.github/workflows/cd_prod.yml @@ -32,6 +32,14 @@ jobs: echo -n "$KEYSTORE_PROPERTIES" | base64 --decode --output $KEYSTORE_PROPERTIES_PATH cp $KEYSTORE_PROPERTIES_PATH ./android + - 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: Install Flutter uses: subosito/flutter-action@v2 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 103f9ca..40703d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,14 +28,6 @@ jobs: with: submodules: recursive - - 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 - - uses: subosito/flutter-action@v2 with: channel: "stable" diff --git a/analysis_options.yaml b/analysis_options.yaml index f9b3034..6f0d37d 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1 +1,3 @@ include: package:flutter_lints/flutter.yaml +analyzer: + exclude: [lib/launch_app.dart] \ No newline at end of file