Skip to content

Commit

Permalink
env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisChoupault committed Jan 20, 2025
1 parent 8e98e94 commit f14cbdb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:

- name: Set up local.properties
run: |
echo "sdk.dir=${{ ANDROID_SDK_PATH }}" > ./example/android/local.properties
echo "flutter.sdk=${{ FLUTTER_SDK_PATH }}" >> ./example/android/local.properties
echo "flutter.buildMode=${{ BUILD_MODE }}" >> ./example/android/local.properties
echo "sdk.dir=${{ env.ANDROID_SDK_PATH }}" > ./example/android/local.properties
echo "flutter.sdk=${{ env.FLUTTER_SDK_PATH }}" >> ./example/android/local.properties
echo "flutter.buildMode=${{ env.BUILD_MODE }}" >> ./example/android/local.properties
- name: Build and test
run: |
Expand Down

0 comments on commit f14cbdb

Please sign in to comment.