Skip to content

Commit 4ba169d

Browse files
ssh-randyclaude
andcommitted
ci: add temporary branch trigger for testing build pipeline
TODO: Remove the fix-build-codespaces branch trigger before merging. Also skip release job on branch pushes (only on version tags). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e15ea6b commit 4ba169d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-binaries.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
push:
66
tags:
77
- 'v*.*.*'
8+
# TODO: Remove this branch trigger before merging to main
9+
branches:
10+
- fix-build-codespaces
811

912
# Manual dispatch for dev/test builds
1013
workflow_dispatch:
@@ -305,9 +308,10 @@ jobs:
305308
echo "=== All musl tests passed ==="
306309
'
307310
308-
# Step 5: Create GitHub Release
311+
# Step 5: Create GitHub Release (only on version tags, not branch pushes)
309312
release:
310313
name: Create Release
314+
if: startsWith(github.ref, 'refs/tags/v')
311315
runs-on: ubuntu-latest
312316
needs: [test, test-musl]
313317
permissions:

0 commit comments

Comments
 (0)