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:

View File

@@ -104,7 +104,6 @@ dockers_v2:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/riscv64
- id: preflight
dockerfile: ./deploy/Dockerfile.troubleshoot
@@ -120,7 +119,6 @@ dockers_v2:
- linux/amd64
- linux/arm64
- linux/arm/v7
- linux/riscv64
universal_binaries:
- id: preflight-universal

View File

@@ -7,7 +7,6 @@ RUN apt-get -qq update \
COPY support-bundle /troubleshoot/support-bundle
COPY preflight /troubleshoot/preflight
COPY collect /troubleshoot/collect
ENV PATH="/troubleshoot:${PATH}"