We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d654d1 commit 76cf6f4Copy full SHA for 76cf6f4
1 file changed
.github/workflows/release.yml
@@ -37,6 +37,12 @@ jobs:
37
with:
38
version: 2.3.1
39
40
+ - name: Install operator-sdk
41
+ run: |
42
+ RELEASE_VERSION=v1.6.1
43
+ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
44
+ chmod +x operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu && sudo mkdir -p /usr/local/bin/ && sudo cp operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu /usr/local/bin/operator-sdk && rm operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
45
+
46
- name: build release
47
id: build_release
48
env:
0 commit comments