Skip to content

fix: adjust the condition to actually run this step from release branches #19187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2025
Merged
Changes from all commits
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
fix: adjust the condition to actually run this step from release bran…
…ches
  • Loading branch information
jdomeracki-coder committed Aug 5, 2025
commit 98061c120583277dc4c41384b149c42d2406e52c
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ jobs:
run: ls -lh build

- name: Publish Coder CLI binaries and detached signatures to GCS
if: ${{ !inputs.dry_run && github.ref == 'refs/heads/main' && github.repository_owner == 'coder'}}
if: ${{ !inputs.dry_run }}
run: |
set -euxo pipefail
Expand Down
Loading