You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2020/02/16 22:03:04 UTC

[camel-k] 02/04: chore(ci): test openshift on GH actions - fix url

This is an automated email from the ASF dual-hosted git repository.

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit ce88230e0ff2de2bfbc95a314e45dc4784f227bc
Author: Nicola Ferraro <ni...@gmail.com>
AuthorDate: Sat Feb 15 10:03:34 2020 +0100

    chore(ci): test openshift on GH actions - fix url
---
 .github/workflows/openshift.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/openshift.yml b/.github/workflows/openshift.yml
index 2b6b9b6..d570cc2 100644
--- a/.github/workflows/openshift.yml
+++ b/.github/workflows/openshift.yml
@@ -65,7 +65,7 @@ jobs:
         sudo echo '{"insecure-registries": ["172.30.0.0/16"]}' | sudo tee /etc/docker/daemon.json > /dev/null
         sudo service docker start
 
-        DOWNLOAD_URL=https://github.com/openshift/origin/releases/download/v$OPENSHIFT_VERSION/openshift-origin-client-tools-v$OPENSHIFT_VERSION-$OPENSHIFT_COMMIT-linux-64bit.tar.gz
+        DOWNLOAD_URL=https://github.com/openshift/origin/releases/download/$OPENSHIFT_VERSION/openshift-origin-client-tools-$OPENSHIFT_VERSION-$OPENSHIFT_COMMIT-linux-64bit.tar.gz
         wget -O client.tar.gz ${DOWNLOAD_URL}
         tar xvzOf client.tar.gz > oc.bin
         sudo mv oc.bin /usr/local/bin/oc