From 4870bd3bfecc75737aa3e491499576fa642fb258 Mon Sep 17 00:00:00 2001 From: zphinx Date: Mon, 4 May 2026 06:48:34 +0200 Subject: [PATCH] ci: rename release.yml to tag.yml, fix trigger to match non-v tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Trigger was 'v*' but tags are bare semver (0.3.0) — fix to '[0-9]*' - Rename to tag.yml to reflect tag-driven build purpose - Add zip to apt dependencies (required for release zip step) --- .gitea/workflows/{release.yml => tag.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .gitea/workflows/{release.yml => tag.yml} (98%) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/tag.yml similarity index 98% rename from .gitea/workflows/release.yml rename to .gitea/workflows/tag.yml index f964cc8..6ac96d8 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/tag.yml @@ -1,9 +1,9 @@ -name: Release +name: Tag Build on: push: tags: - - "v*" + - "[0-9]*" jobs: build: @@ -61,8 +61,8 @@ jobs: run: | if command -v apt-get >/dev/null 2>&1; then apt-get update - apt-get install -y python3.12 python3.12-venv python3-pip patchelf ccache || \ - apt-get install -y python3 python3-pip python3-venv patchelf ccache + apt-get install -y python3.12 python3.12-venv python3-pip patchelf ccache zip || \ + apt-get install -y python3 python3-pip python3-venv patchelf ccache zip elif command -v dnf >/dev/null 2>&1; then dnf install -y python3 python3-pip python3-devel patchelf ccache elif command -v yum >/dev/null 2>&1; then