We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e79fea commit ee5a51cCopy full SHA for ee5a51c
.github/workflows/publish.yml
@@ -21,13 +21,13 @@ jobs:
21
toolchain: stable
22
23
- name: Cargo Publish (Dry Run)
24
- if: ${{ inputs.dry-run === 'true' }}
+ if: ${{ inputs.dry-run == 'true' }}
25
run: cargo publish --dry-run --token ${CRATES_TOKEN} -p antithesis_sdk
26
env:
27
CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
28
29
- name: Cargo Publish
30
- if: ${{ inputs.dry-run !== 'true' }}
+ if: ${{ inputs.dry-run != 'true' }}
31
run: echo we will publish for real
32
33
0 commit comments