Skip to content

Commit 3adadfe

Browse files
authored
ci: use format() for dry_run conditions to handle both string and boolean inputs (#20)
1 parent 314f11e commit 3adadfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
dry_run: ${{ inputs.dry_run }}
3838

3939
- name: Attest build provenance
40-
if: ${{ !inputs.dry_run }}
40+
if: ${{ format('{0}', inputs.dry_run) == 'false' }}
4141
uses: actions/attest@v4
4242
with:
4343
subject-path: 'launchdarkly-openfeature-server-sdk-*.gem'

0 commit comments

Comments
 (0)