Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: ensure that the detached signatures objects are named correctly
  • Loading branch information
jdomeracki-coder committed Aug 11, 2025
commit fd9f0a31921f874faff4d2b10dec8f3209dea167
10 changes: 3 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -670,15 +670,11 @@ jobs:
cli_binary="${cli_binaries[$i]}"

# The detached signature file name remains the same as the slim binary name
detached_signature="${slim_binary}.asc"
source_detached_signature="${slim_binary}.asc"
target_detached_signature="${cli_binary}.asc"

echo "Copying ${slim_binary} to ${cli_binary}..."
# Copy the main binary, renaming it in the process
gcloud storage cp "./build/${slim_binary}" "gs://releases.coder.com/coder-cli/${version}/${cli_binary}"

echo "Copying ${detached_signature}..."
# Copy the signature file without renaming
gcloud storage cp "./build/${detached_signature}" "gs://releases.coder.com/coder-cli/${version}/${detached_signature}"
gcloud storage cp "./build/${source_detached_signature}" "gs://releases.coder.com/coder-cli/${version}/${target_detached_signature}"
done

- name: Publish release
Expand Down