There was an error while loading. Please reload this page.
1 parent 487149a commit aadb46dCopy full SHA for aadb46d
1 file changed
.github/workflows/operatorhub.yaml
@@ -60,8 +60,11 @@ jobs:
60
61
- name: Install opm
62
run: |
63
- curl -sL https://github.com/operator-framework/operator-registry/releases/download/v1.65.0/linux-amd64-opm -o /usr/local/bin/opm
64
- chmod +x /usr/local/bin/opm
+ OPM_VERSION=v1.65.0
+ curl -fsSLO https://github.com/operator-framework/operator-registry/releases/download/${OPM_VERSION}/linux-amd64-opm
65
+ curl -fsSLO https://github.com/operator-framework/operator-registry/releases/download/${OPM_VERSION}/checksums.txt
66
+ grep ' linux-amd64-opm$' checksums.txt | sha256sum -c -
67
+ install -m 0755 linux-amd64-opm /usr/local/bin/opm
68
69
- name: Add operatorhub bundle
70
id: update
0 commit comments