File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff 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
125123universal_binaries :
126124 - id : preflight-universal
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ RUN apt-get -qq update \
77
88COPY support-bundle /troubleshoot/support-bundle
99COPY preflight /troubleshoot/preflight
10- COPY collect /troubleshoot/collect
1110
1211ENV PATH="/troubleshoot:${PATH}"
1312
You can’t perform that action at this time.
0 commit comments