Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix combined tarball creation for Android #149

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/Android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,9 @@ jobs:
pushd install

tar xf x86/*.tar.bz2 -C x86/
rm x86/*.tar.bz2
mv x86/maplibre-native-qt_*/* x86/
rm -r x86/maplibre-native-qt_*
mv x86/maplibre-native-qt_*/ .

tar xf x86_64/*.tar.bz2 -C x86_64/
mv x86_64/maplibre-native-qt_*/* x86_64/
Expand All @@ -187,6 +188,8 @@ jobs:
mv arm64-v8a/maplibre-native-qt_*/* arm64-v8a/
rm -r arm64-v8a/maplibre-native-qt_*

mv x86 x86_64 armeabi-v7a arm64-v8a maplibre-native-qt_*

popd

- name: Create artifacts
Expand Down