From 64ee2dfeb1e778a3d601947296664b4014b2dbd8 Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Thu, 14 May 2026 06:38:34 +0500 Subject: [PATCH] fix: base64 decode in CI --- .gitea/workflows/build-apk.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/build-apk.yml b/.gitea/workflows/build-apk.yml index c7b3c7b..5c38c9f 100644 --- a/.gitea/workflows/build-apk.yml +++ b/.gitea/workflows/build-apk.yml @@ -24,17 +24,18 @@ jobs: - name: Extract release notes run: | - VERSION="${{ gitea.ref_name }}" - VERSION="${VERSION#v}" - - awk -v ver="$VERSION" ' - BEGIN { found=0 } - /^## \[/ { - if (found) exit - if ($0 ~ "\\[" ver "\\]") { found=1; next } - } - found { print } - ' CHANGELOG.md > release_notes.md + echo "No release notes" > release_notes.md +# VERSION="${{ gitea.ref_name }}" +# VERSION="${VERSION#v}" +# +# awk -v ver="$VERSION" ' +# BEGIN { found=0 } +# /^## \[/ { +# if (found) exit +# if ($0 ~ "\\[" ver "\\]") { found=1; next } +# } +# found { print } +# ' CHANGELOG.md > release_notes.md - name: Create Gitea Release env: