diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1127f2a..10c43db 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -151,7 +151,11 @@ jobs: - name: Prepare release files run: | mkdir -p release-files - find artifacts -type f \( -name "*.exe" -o -name "*.AppImage" -o -name "*.nupkg" -o -name "*.apk" -o -name "RELEASES*" \) -exec cp {} release-files/ \; + find artifacts -type f \( -name "*.exe" -o -name "*.AppImage" -o -name "*.nupkg" -o -name "RELEASES*" \) -exec cp {} release-files/ \; + APK=$(find artifacts -type f -name "*.apk" | head -1) + if [ -n "$APK" ]; then + cp "$APK" "release-files/Paarrot.apk" + fi ls -la release-files/ - name: Create or Update Release diff --git a/obtainium.json b/obtainium.json new file mode 100644 index 0000000..2de5459 --- /dev/null +++ b/obtainium.json @@ -0,0 +1,7 @@ +{ + "id": "com.paarrot.app", + "url": "http://synbox.ruv.wtf:8418/litruv/cinny-mobile", + "author": "litruv", + "name": "Paarrot", + "additionalSettings": "{\"apkFilterRegEx\":\"Paarrot\\\\.apk\",\"invertAPKFilter\":false,\"autoApkFilterByArch\":true,\"releaseIdSkipPatterns\":[],\"sortMethodChoice\":0}" +}