We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eff49b commit 752a46fCopy full SHA for 752a46f
1 file changed
.github/workflows/main.yml
@@ -19,10 +19,12 @@ jobs:
19
java-version: '11'
20
distribution: 'temurin'
21
cache: gradle
22
- - name: Clean Gradle
23
- run: ./gradlew clean
+ - name: Create local gradle properties files
+ run: touch local.properties
24
+ - name: Add Google Maps API Key
25
+ run: echo "MAPS_API_KEY=${{secrets.MAPS_API_KEY}}" >> local.properties
26
- name: Build debug APK
- run: ./gradlew assembleDebug
27
+ run: ./gradlew build
28
- name: Upload APK
29
uses: actions/upload-artifact@v3.1.3
30
with:
0 commit comments