From 68ce7346b1063b34421ee4744b750bf00c0b4478 Mon Sep 17 00:00:00 2001 From: benya Date: Sun, 18 Jan 2026 23:20:23 +0300 Subject: [PATCH] Fix Repo --- .gitea/workflows/release.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index ad1b10c..cb6d2b7 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -147,16 +147,20 @@ jobs: REPO_DESC="Automatically generated F-Droid repository" GPG_KEY_ALIAS="${{ secrets.FDROID_GPG_KEY_ALIAS }}" GPG_KEYSTORE_PATH="fdroid-repo/keystore.jks" + GPG_KEYSTORE_PASS="${{ secrets.FDROID_KEY_PASSWORD }}" GPG_KEY_PASSWORD="${{ secrets.FDROID_KEY_PASSWORD }}" + REPO_ICON="icons/icon.png" - printf "repo_url: %s\nrepo_name: %s\nrepo_description: %s\nrepo_keyalias: %s\nkeystore: %s\nkeypass: %s\n" \ - "$REPO_URL" \ - "$REPO_NAME" \ - "$REPO_DESC" \ - "$GPG_KEY_ALIAS" \ - "$GPG_KEYSTORE_PATH" \ - "$GPG_KEY_PASSWORD" \ - > fdroid-repo/config.yml + printf '%s\n' \ + "repo_url: $REPO_URL" \ + "repo_name: $REPO_NAME" \ + "repo_description: $REPO_DESC" \ + "repo_keyalias: $GPG_KEY_ALIAS" \ + "keystore: $GPG_KEYSTORE_PATH" \ + "keystorepass: $GPG_KEYSTORE_PASS" \ + "keypass: $GPG_KEY_PASSWORD" \ + "repo_icon: $REPO_ICON" \ + > fdroid-repo/config.yml # ------------------- Generate F-Droid Index ------------------- - name: Generate F-Droid Index