From c129150baa24807837c03a97c6fc2adb50e2f50d Mon Sep 17 00:00:00 2001 From: Mweya Date: Mon, 3 Jun 2024 16:46:19 +0200 Subject: [PATCH 1/2] fix(apk): Fix readme formatting --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aaaf53e7..51180482 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -143,7 +143,7 @@ jobs: - name: Create repo structure run: | cp ~/.abuild/abuild.rsa.pub otc-auth.rsa.pub - echo -e " # otc-auth apk-repo \n This repo contains .apk files built from the [latest version of otc-auth](https://github.com/iits-consulting/otc-auth/releases).\n\n ## Usage \n \`\`\`bash \n apk add curl \n curl -SsL -o /etc/apk/keys/otc-auth.rsa.pub https://iits-consulting.github.io/apk-repo otc-auth.rsa.pub \n apk add otc-auth --repository='https://iits-consulting.github.io/apk-repo' \`\`\`" > README.md; + echo -e " # otc-auth apk-repo \n This repo contains .apk files built from the [latest version of otc-auth](https://github.com/iits-consulting/otc-auth/releases).\n\n ## Usage \n \`\`\`bash \n apk add curl \n curl -SsL -o /etc/apk/keys/otc-auth.rsa.pub https://iits-consulting.github.io/apk-repo otc-auth.rsa.pub \n apk add otc-auth --repository='https://iits-consulting.github.io/apk-repo' \n \`\`\`" > README.md; - name: Cleanup run: | From cb51c9bef75be1999e6ed79410834b85f6c8ca0c Mon Sep 17 00:00:00 2001 From: Mweya Date: Mon, 3 Jun 2024 17:05:22 +0200 Subject: [PATCH 2/2] feat(apk): Be more verbose with signing --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 51180482..242807ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,7 +138,7 @@ jobs: - name: Make and sign apkindex run: | apk index -o APKINDEX.tar.gz *.apk - abuild-sign -k ~/.abuild/abuild.rsa APKINDEX.tar.gz + abuild-sign -v -k ~/.abuild/abuild.rsa APKINDEX.tar.gz - name: Create repo structure run: |