diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index ec37f5b..c66ffdc 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -63,9 +63,6 @@ jobs: # Copy the generated binary to the assets directory: binary = "rosa-support" - if goos == "windows": - binary += ".exe" - asset = os.path.join(assets, f"rosa-support-{goos}-{goarch}") os.rename(binary, asset) # Build for the supported operating systems and architectures: @@ -74,7 +71,6 @@ jobs: build("linux", "arm64") build("linux", "ppc64le") build("linux", "s390x") - build("windows", "amd64") # Calculate the SHA256 digests: for asset in os.listdir(assets):