ci: enable artifact builds for all commits on all branches
Some checks failed
CI / Type Check & Lint (push) Successful in 6s
CI / Build Test (Current Platform) (push) Successful in 6s
CI / Build All Platforms (push) Failing after 24s

- 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
This commit is contained in:
2025-10-19 13:59:27 +00:00
parent accf137216
commit a897a7c780

View File

@@ -61,9 +61,8 @@ jobs:
./nupst-test help ./nupst-test help
build-all: build-all:
name: Build All Platforms (Tag/Main only) name: Build All Platforms
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
steps: steps:
- name: Checkout code - name: Checkout code