Skip to content

Commit

Permalink
fix(ci/cd): remove env.run in upload.yml (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
2paperstar authored Oct 4, 2024
1 parent 95b1dd8 commit 0d84ef8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
channel: 'stable'
cache: true
- uses: actions/cache@v4
if: env.run == 'true'
with:
path: |
.dart_tool
Expand All @@ -75,15 +74,14 @@ jobs:
- name: install flutterfire
run: flutter pub global activate flutterfire_cli
- uses: actions/cache@v4
if: env.run == 'true' && matrix.os == 'macos-14'
if: matrix.os == 'macos-14'
with:
path: |
~/.cocoapods
~/Library/Caches/CocoaPods
key: cocoapods-${{ hashFiles('ios/Podfile.lock') }}

- name: Copy dotenv
if: env.run == 'true'
run: cat ${{ secrets.DOTENV }} > .env

- name: Generate files
Expand Down

0 comments on commit 0d84ef8

Please sign in to comment.