From e3d8e9199040b7ebb57516f3f4e1667b3d21997c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sun, 6 Jul 2025 19:28:40 +0200 Subject: [PATCH] Fix the plugins path --- .github/workflows/android.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 9c52925f..1ab35ecb 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -43,18 +43,21 @@ jobs: run: echo "runid=$(gh run list --repo tumic0/QtPBFImagePlugin --workflow 'Android' --limit 1 --json databaseId -q '.[0].databaseId')" >> $GITHUB_OUTPUT env: GH_TOKEN: ${{ github.token }} + - name: Create the plugins dir + run: mkdir plugins - name: Download QtPBFImagePlugin uses: actions/download-artifact@v4 with: name: libplugins_imageformats_libpbf_arm64-v8a.so github-token: ${{ github.token }} repository: tumic0/QtPBFImagePlugin + path: plugins merge-multiple: true run-id: ${{steps.runid.outputs.runid}} - name: Create localization run: lrelease gpxsee.pro - name: Configure build - run: qmake gpxsee.pro OPENSSL_PATH=android_openssl ANDROID_EXTRA_PLUGINS=libplugins_imageformats_libpbf_arm64-v8a.so + run: qmake gpxsee.pro OPENSSL_PATH=android_openssl ANDROID_EXTRA_PLUGINS=plugins - name: Build project run: make -j4 apk - name: Upload artifacts