fix: run cap sync from cinny directory where capacitor cli is installed
Some checks failed
Build / increment-version (push) Successful in 6s
Build / build-android (push) Failing after 3m3s
Build / create-release (push) Has been skipped

This commit is contained in:
2026-04-17 20:09:50 +10:00
parent 1302bead0e
commit 0d089d0244

View File

@@ -7,12 +7,12 @@
},
"scripts": {
"apply-overlay": "node scripts/apply-overlay.mjs",
"android:prepare": "cd cinny && npm run build && cd .. && npx cap sync android",
"android:prepare": "cd cinny && npm run build && npx cap sync android",
"android:open": "cd cinny && npx cap open android",
"android:run": "cd cinny && npx cap run android",
"android:apk": "npm run apply-overlay && npm run android:prepare && cd cinny/android && gradlew.bat assembleDebug",
"android:apk:release": "npm run apply-overlay && npm run android:prepare && cd cinny/android && gradlew.bat assembleRelease",
"android:apk:linux": "cd cinny && npm run build && cd .. && npx cap sync android && cd android && ./gradlew assembleDebug",
"android:apk:linux": "cd cinny && npm run build && npx cap sync android && cd ../android && ./gradlew assembleDebug",
"android:aab": "npm run apply-overlay && npm run android:prepare && cd cinny/android && gradlew.bat bundleRelease"
},
"keywords": [],