remove collect binary and risc binary

This commit is contained in:
Marc Campbell
2025-09-29 18:36:36 -07:00
parent a41958c173
commit c8c246a809
3 changed files with 7 additions and 3 deletions

View File

@@ -13,6 +13,13 @@ jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Verify release branch
run: |
if [[ "${{ github.ref }}" != refs/heads/v1beta3 ]]; then
echo "::error::Releases can only be created from the v1beta3 branch"
echo "Current ref: ${{ github.ref }}"
exit 1
fi
- name: Checkout
uses: actions/checkout@v5
with: