From a79168ff160d849bc1b2f6771e7adabd1b308c88 Mon Sep 17 00:00:00 2001 From: Martijn van Dijk Date: Wed, 31 Jul 2024 23:53:01 +0200 Subject: [PATCH] Remove firebase from normal build --- .github/workflows/build.yaml | 48 ------------------------------------ 1 file changed, 48 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3becb8e..15614d2 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -375,54 +375,6 @@ jobs: env: source-directory: ./flutter_cache_manager - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 - - - name: Set up Dart - uses: dart-lang/setup-dart@v1 - - # Make sure the stable version of Flutter is available - - name: Set up Flutter - uses: subosito/flutter-action@v2 - with: - channel: "stable" - architecture: x64 - cache: true - - # Download all Flutter packages - - name: Download dependencies - run: flutter pub get - working-directory: ${{env.source-directory}} - - # Publish the package - - name: Publish package - run: dart pub publish -v -f - - publish_cache_manager_firebase: - if: ${{ github.ref_type == 'tag' }} - name: Publish Cache Manager Firebase - permissions: - id-token: write - needs: - [ - format, - analyze, - tests, - build_android, - build_ios, - build_macOS, - build_windows, - build_linux, - build_web, - ] - # The type of runner that the job will run on - runs-on: ubuntu-latest - - env: - source-directory: ./flutter_cache_manager_firebase - # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it