From cb33fb8b539acc8ffeb89ac53e501a57b356d7a6 Mon Sep 17 00:00:00 2001 From: space Date: Sun, 1 Mar 2026 16:59:40 +0100 Subject: [PATCH] feat: add tagging and release creation steps in CI workflow --- .gitea/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7cec97e..81cb19d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -57,9 +57,18 @@ jobs: path: mobile/app-build if-no-files-found: error + - name: 🏷 Create tag + run: | + TAG="build-$(git rev-parse --short HEAD)" + git tag "$TAG" + git push origin "$TAG" + echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV + - name: 🚀 Create release uses: softprops/action-gh-release@v1 with: + tag_name: ${{ env.RELEASE_TAG }} + name: ${{ env.RELEASE_TAG }} files: mobile/app-build generate_release_notes: true env: