Skip to content

Commit

Permalink
workflows: fix opm client download url
Browse files Browse the repository at this point in the history
  • Loading branch information
flavianmissi committed Dec 16, 2021
1 parent 6952d81 commit ecba559
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ jobs:
- name: Publish Catalog Index
env:
OPM_DOWNLOAD_URL: https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/stable-4.6/
OPM_DOWNLOAD_URL: https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/stable-4.6
OPM_TAR: opm-linux.tar.gz
run: |
wget -q "${OPM_DOWNLOAD_URL}/${OPM_TAR}"
wget "${OPM_DOWNLOAD_URL}/${OPM_TAR}"
tar xvf "${OPM_TAR}"
./opm index add --build-tool docker --bundles "${{steps.bundle-image.outputs.digest}}" --tag "${INDEX}:${TAG}"
docker push "${INDEX}:${TAG}"

0 comments on commit ecba559

Please sign in to comment.