Skip to content

Commit c8c246a

Browse files
committed
remove collect binary and risc binary
1 parent a41958c commit c8c246a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ jobs:
1313
goreleaser:
1414
runs-on: ubuntu-latest
1515
steps:
16+
- name: Verify release branch
17+
run: |
18+
if [[ "${{ github.ref }}" != refs/heads/v1beta3 ]]; then
19+
echo "::error::Releases can only be created from the v1beta3 branch"
20+
echo "Current ref: ${{ github.ref }}"
21+
exit 1
22+
fi
1623
- name: Checkout
1724
uses: actions/checkout@v5
1825
with:

deploy/.goreleaser.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ dockers_v2:
104104
- linux/amd64
105105
- linux/arm64
106106
- linux/arm/v7
107-
- linux/riscv64
108107

109108
- id: preflight
110109
dockerfile: ./deploy/Dockerfile.troubleshoot
@@ -120,7 +119,6 @@ dockers_v2:
120119
- linux/amd64
121120
- linux/arm64
122121
- linux/arm/v7
123-
- linux/riscv64
124122

125123
universal_binaries:
126124
- id: preflight-universal

deploy/Dockerfile.troubleshoot

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ RUN apt-get -qq update \
77

88
COPY support-bundle /troubleshoot/support-bundle
99
COPY preflight /troubleshoot/preflight
10-
COPY collect /troubleshoot/collect
1110

1211
ENV PATH="/troubleshoot:${PATH}"
1312

0 commit comments

Comments
 (0)