Skip to content

Commit ee5a51c

Browse files
Update publish.yml - Fix yaml error
1 parent 3e79fea commit ee5a51c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
toolchain: stable
2222

2323
- name: Cargo Publish (Dry Run)
24-
if: ${{ inputs.dry-run === 'true' }}
24+
if: ${{ inputs.dry-run == 'true' }}
2525
run: cargo publish --dry-run --token ${CRATES_TOKEN} -p antithesis_sdk
2626
env:
2727
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
2828

2929
- name: Cargo Publish
30-
if: ${{ inputs.dry-run !== 'true' }}
30+
if: ${{ inputs.dry-run != 'true' }}
3131
run: echo we will publish for real
3232
env:
3333
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)