Skip to content

Commit

Permalink
fix(ci): ternary result must be truthy
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog-crabnebula committed Dec 11, 2024
1 parent a2a8fa2 commit 6568660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:

env:
CN_APPLICATION: "crabnebula/release-channels-demo"
CHANNEL_ARG: ${{ inputs.channel == 'stable' && '' || format('--channel {0}', inputs.channel) }}
CHANNEL_ARG: ${{ inputs.channel == 'stable' && ' ' || format('--channel {0}', inputs.channel) }}

jobs:
draft:
Expand Down

0 comments on commit 6568660

Please sign in to comment.