Skip to content

Commit

Permalink
Use wget instead of go install
Browse files Browse the repository at this point in the history
Signed-off-by: Jose R. Gonzalez <[email protected]>
  • Loading branch information
komish committed Nov 14, 2023
1 parent 078136c commit db17cf6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ jobs:
registry: quay.io

- name: Install OperatorSDK
run: go install github.com/operator-framework/operator-sdk@${{ env.OPERATOR_SDK_VERSION }}
run: |
wget -O /usr/local/bin/operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/${{ env.OPERATOR_SDK_VERSION }}/operator-sdk_linux_amd64
chmod +x /usr/local/bin/operator-sdk
operator-sdk --version
/usr/local/bin/operator-sdk --version
- name: Regenerate bundle with pinned images
run: USE_IMAGE_DIGESTS=true make bundle

Expand Down

0 comments on commit db17cf6

Please sign in to comment.