Skip to content

Commit

Permalink
HPCC4J-674 Removed deprecated feature from GithubAction (#783)
Browse files Browse the repository at this point in the history
Signed-off-by: James McMullan [email protected]
  • Loading branch information
jpmcmu authored Jan 7, 2025
1 parent 049e7a1 commit e8dbeb5
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/baremetal-regression-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,16 @@ jobs:
latestVersionStr = ".".join(map(str, latestVersion))
latestVersionURL = 'https://cdn.hpccsystems.com/releases/CE-Candidate-' + latestVersionStr \
+ '/bin/platform/hpccsystems-platform-community_' + latestVersionStr + '-1jammy_amd64_withsymbols.deb'
print(f"::set-output name=previousVersion::{previousVersionStr}")
print(f"::set-output name=previousVersionURL::{previousVersionURL}")
print(f"::set-output name=latestVersion::{latestVersionStr}")
print(f"::set-output name=latestVersionURL::{latestVersionURL}")
github_output_path = os.getenv('GITHUB_OUTPUT')
if github_output_path:
with open(github_output_path, 'a') as output_file:
output_file.write(f"previousVersion={previousVersionStr}\n")
output_file.write(f"previousVersionURL={previousVersionURL}\n")
output_file.write(f"latestVersion={latestVersionStr}\n")
output_file.write(f"latestVersionURL={latestVersionURL}\n")
else:
print('GITHUB_OUTPUT environment variable is not set.')
- name: Install latest version
run: |
Expand Down

0 comments on commit e8dbeb5

Please sign in to comment.