Skip to content

Commit

Permalink
HPCC4J-553 Github Actions: Add baremetal test workflow
Browse files Browse the repository at this point in the history
- Fixed issue with decrementing previous version

Signed-off-by: James McMullan [email protected]
  • Loading branch information
jpmcmu committed Jan 30, 2024
1 parent 87c36bf commit eb03c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/baremetal-regression-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ 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], str(int(latestVersion[2]) - 2)]
previousVersionStr = ".".join(map(str, previousVersion))
previousVersionURL = 'https://cdn.hpccsystems.com/releases/CE-Candidate-' + previousVersionStr \
Expand Down

0 comments on commit eb03c63

Please sign in to comment.