Skip to content

Commit b9c47e0

Browse files
committed
[build] Fix the download bucket URL for ODO nightly builds
Signed-off-by: Victor Rubezhny <vrubezhny@redhat.com>
1 parent af5f8c8 commit b9c47e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/check-odo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- name: Check if a Nightly Build exists for the last commit id
6464
id: check-nightly-build-exists
65-
run: echo nightly-build-exists=`curl -s "https://s3.eu-de.cloud-object-storage.appdomain.cloud/odo-nightly-builds/odo-linux-arm64-${{ needs.check-odo.outputs.last-commit-id }}.tar.gz.sha256" | grep -E "^[A-Za-z0-9]+$" | wc -w` >> $GITHUB_OUTPUT
65+
run: echo nightly-build-exists=`curl -s "https://s3.us-south.cloud-object-storage.appdomain.cloud/odo-nightly/odo-linux-arm64-${{ needs.check-odo.outputs.last-commit-id }}.tar.gz.sha256" | grep -E "^[A-Za-z0-9]+$" | wc -w` >> $GITHUB_OUTPUT
6666

6767
update-odo:
6868
runs-on: ubuntu-latest
@@ -93,7 +93,7 @@ jobs:
9393
if [[ $platform == *"-a"* ]]; then
9494
arch="" # already in platform string
9595
fi
96-
new_url="https://s3.eu-de.cloud-object-storage.appdomain.cloud/odo-nightly-builds/odo-${pltfrm}${arch}-${{ needs.check-odo.outputs.last-commit-id }}${ext}"
96+
new_url="https://s3.us-south.cloud-object-storage.appdomain.cloud/odo-nightly/odo-${pltfrm}${arch}-${{ needs.check-odo.outputs.last-commit-id }}${ext}"
9797
checksum=`curl -s ${new_url}.sha256`
9898
dlFileName="odo-${pltfrm}${arch}${ext}"
9999
cmdFileName="odo-${pltfrm}${arch}-${{ needs.check-odo.outputs.last-commit-id }}${exeExt}"

0 commit comments

Comments
 (0)