Skip to content

Commit

Permalink
Merge pull request #4 from ciaranRoche/release-action-fix
Browse files Browse the repository at this point in the history
OCM-7256 | chore: fix release action to correct target
  • Loading branch information
ciaranRoche authored Apr 25, 2024
2 parents 14da38f + 04a46eb commit 68d3bca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
env["GOARCH"] = goarch
# Build the binary:
args = ["make", "cmds"]
args = ["make", "build"]
subprocess.run(check=True, env=env, args=args)
# Copy the generated binary to the assets directory:
binary = "ocm-support"
binary = "rosa-support"
if goos == "windows":
binary += ".exe"
asset = os.path.join(assets, f"ocm-support-{goos}-{goarch}")
asset = os.path.join(assets, f"rosa-support-{goos}-{goarch}")
os.rename(binary, asset)
# Build for the supported operating systems and architectures:
Expand Down

0 comments on commit 68d3bca

Please sign in to comment.