Skip to content

Commit 5578eca

Browse files
committed
chore: Use GITHUB_WORKSPACE.
1 parent 462e273 commit 5578eca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
- name: Build APKs
3939
run: |
4040
echo "Generating ApiDemos (Java) APKs"
41-
cd ./ApiDemos/java
41+
cd $GITHUB_WORKSPACE/ApiDemos/java
4242
./gradlew assembleV3 assembleGms
4343
cp ./app/build/outputs/apk/gms/debug/app-gms-debug.apk $GITHUB_WORKSPACE/ApiDemos-java-gms-debug.apk
4444
cp ./app/build/outputs/apk/v3/debug/app-v3-debug.apk $GITHUB_WORKSPACE/ApiDemos-java-v3-debug.apk
4545
4646
echo "Generating Kotlin (Kotlin) APKs"
47-
cd ./ApiDemos/kotlin
47+
cd $GITHUB_WORKSPACE/ApiDemos/kotlin
4848
./gradlew assembleV3 assembleGms
4949
cp ./app/build/outputs/apk/gms/debug/app-gms-debug.apk $GITHUB_WORKSPACE/ApiDemos-kotlin-gms-debug.apk
5050
cp ./app/build/outputs/apk/v3/debug/app-v3-debug.apk $GITHUB_WORKSPACE/ApiDemos-kotlin-v3-debug.apk

ApiDemos/java/app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
-->
1616
<resources>
17-
<string name="demo_title">Google Maps API Demos</string>
17+
<string name="demo_title">Maps SDK for Android Demos (Java)</string>
1818
<string name="no_demos">No demos</string>
1919
<string name="play_services_not_installed">Google Play services is not installed on this device.</string>
2020

ApiDemos/kotlin/app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
limitations under the License.
1515
-->
1616
<resources>
17-
<string name="app_name">Kotlin Demos</string>
17+
<string name="app_name">Maps SDK for Android Demos (Kotlin)</string>
1818
<string name="demo_title">Google Maps API Demos</string>
1919
<string name="no_demos">No demos</string>
2020
<string name="play_services_not_installed">Google Play services is not installed on this device.</string>

0 commit comments

Comments
 (0)