Skip to content

Commit

Permalink
still testing android.yml
Browse files Browse the repository at this point in the history
env syntax mildly confusing
  • Loading branch information
rksh authored Dec 22, 2023
1 parent 9b987a6 commit 3b7edd5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ jobs:
distribution: 'temurin'
cache: gradle
- name: Update API KEY from Secrets
env: ${{ secrets.CI_DUMMY_MAPS_API_KEY }}
run: echo MAPS_API_KEY="$CI_DUMMY_MAPS_API_KEY" > ./local.properties
env:
MAPS_KEY: ${{ secrets.CI_DUMMY_MAPS_API_KEY }}
run: echo MAPS_API_KEY="$env:MAPS_KEY" > ./local.properties
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down

0 comments on commit 3b7edd5

Please sign in to comment.