From a897a7c780ece0dfa1e8cf9a1514d817ed24fa6b Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Sun, 19 Oct 2025 13:59:27 +0000 Subject: [PATCH] ci: enable artifact builds for all commits on all branches - Remove conditional from build-all job in ci.yml - Previously only ran on main branch and tags - Now runs on every commit to any branch - Allows testing binaries from feature branches via artifacts API --- .gitea/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6277bea..cc072ac 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -61,9 +61,8 @@ jobs: ./nupst-test help build-all: - name: Build All Platforms (Tag/Main only) + name: Build All Platforms runs-on: ubuntu-latest - if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') steps: - name: Checkout code