Skip to content

Commit 8c2c28d

Browse files
committed
fix android project path
1 parent 90c49ee commit 8c2c28d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,15 @@ jobs:
3333
distribution: "temurin"
3434
cache: gradle
3535

36-
- name: Cd to project
37-
run: cd android-project
38-
3936
- name: Grant execute permission for gradlew
40-
run: chmod +x gradlew
37+
run: chmod +x android-project/gradlew
4138

4239
- name: Build with Gradle
43-
run: ./gradlew --no-daemon --stacktrace clean :app:assembleRelease -Pandroid.injected.build.abi=x86_64
40+
run: ./android-project/gradlew --no-daemon --stacktrace clean :app:assembleRelease -Pandroid.injected.build.abi=x86_64
4441

4542
- name: Upload APK artifacts
4643
uses: actions/upload-artifact@v4
4744
with:
4845
name: android-x86_64-${{ matrix.build-type }}-apk
4946
path: |
50-
app/build/intermediates/apk/**/*.apk
47+
android-project/app/build/intermediates/apk/**/*.apk

0 commit comments

Comments
 (0)