mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-06 18:57:26 +01:00
c43ced8b00
This commit makes release builds reproducible. This will help folks update the app from F-Droid when it's released there.
77 lines
2.4 KiB
YAML
77 lines
2.4 KiB
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
partial: false
|
|
|
|
steps:
|
|
build:
|
|
image: alvrme/alpine-android:android-33-jdk11
|
|
commands:
|
|
- apk add --no-cache python3
|
|
- ./gradlew :app:assembleNightly
|
|
sign:
|
|
image: alvrme/alpine-android:android-33-jdk11
|
|
commands:
|
|
- ./scripts/apk-sign.sh eu.toldi.infinityforlemmy.nightly.apk app/build/outputs/apk/nightly/eu.toldi.infinityforlemmy.nightly.apk
|
|
secrets: [ APK_KS_PASS, APK_KS, APK_KS_ALIAS ]
|
|
pull-repo-config:
|
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
|
commands:
|
|
- cd ..
|
|
- pwd
|
|
- mkdir repoconfig
|
|
- cd repoconfig
|
|
- pwd
|
|
- git clone --depth 1 https://codeberg.org/Bazsalanszky/fdroid-repo-config
|
|
- cp /woodpecker/src/codeberg.org/Bazsalanszky/Eternity/eu.toldi.infinityforlemmy.nightly.apk fdroid-repo-config/repo/
|
|
|
|
pull-pages:
|
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
|
commands:
|
|
- cd ..
|
|
- pwd
|
|
- mkdir pages
|
|
- cd pages
|
|
- pwd
|
|
- git clone --depth 2 https://codeberg.org/Bazsalanszky/pages
|
|
- cd pages
|
|
- git config user.name "CODEBERG CI"
|
|
- git config user.email "noreply@nodomain.nodomain"
|
|
# reset and remove, later force push, to keep repo size small
|
|
- git reset --soft HEAD~1
|
|
- git status
|
|
|
|
update-fdroid-data:
|
|
image: cs8898/android-fdroid-sdk:33.0.0
|
|
commands:
|
|
- pwd
|
|
- cd ../repoconfig/fdroid-repo-config/
|
|
- echo -n "$${FDROID_KS}" | base64 -d > keystore.p12
|
|
- cat keystore.p12 | sha256sum
|
|
- sed -i "s|KS_PASS|$${FDROID_KS_PASS}|g" config.yml
|
|
- sed -i "s|KEY_PASS|$${FDROID_KEY_PASS}|g" config.yml
|
|
- fdroid update
|
|
- fdroid deploy
|
|
- ls -laR repo
|
|
secrets: [ FDROID_KS_PASS, FDROID_KEY_PASS, FDROID_KS ]
|
|
push-pages-update-repo:
|
|
image: codeberg.org/freeyourgadget/android-fdroid-tools:latest
|
|
commands:
|
|
- if [ -f .do_not_build ]; then return 0; fi
|
|
- cd ../pages/pages/
|
|
- git add -A
|
|
- git status
|
|
- git diff
|
|
- ls -lsR fdroid/repo
|
|
- git commit -m "autodeploy"
|
|
- git remote remove origin
|
|
- git remote add origin https://Bazsalanszky:"$${GITEA_ACCESS_TOKEN}"@codeberg.org/Bazsalanszky/pages.git
|
|
# force push as we removed all data
|
|
- git push -f origin main
|
|
- cd ../../
|
|
- pwd
|
|
- ls -la
|
|
secrets: [ GITEA_ACCESS_TOKEN ]
|
|
when:
|
|
event: cron |