From 539308654f657023f3418a58967d1bb558d12b1c Mon Sep 17 00:00:00 2001 From: ProCodec <43810146+error9098x@users.noreply.github.com> Date: Wed, 31 Jan 2024 03:25:12 +0530 Subject: [PATCH] Update baremetal-regression-suite.yml Signed-off-by: ProCodec <43810146+error9098x@users.noreply.github.com> --- .github/workflows/baremetal-regression-suite.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/baremetal-regression-suite.yml b/.github/workflows/baremetal-regression-suite.yml index 57c5c74bd..517c04366 100644 --- a/.github/workflows/baremetal-regression-suite.yml +++ b/.github/workflows/baremetal-regression-suite.yml @@ -117,8 +117,8 @@ jobs: print('Latest version is a new minor. Setting previous version to latest version') previousVersion = latestVersion else: - previousVersion = [latestVersion[0], latestVersion[1], latestVersion[2] - 2] - + previousVersion = [latestVersion[0], latestVersion[1], int(latestVersion[2]) - 2] + previousVersionStr = ".".join(map(str, previousVersion)) previousVersionURL = 'https://cdn.hpccsystems.com/releases/CE-Candidate-' + previousVersionStr \ + '/bin/platform/hpccsystems-platform-community_' + previousVersionStr + '-1jammy_amd64_withsymbols.deb'