Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
makspll authored Dec 2, 2024
1 parent 7e61fae commit c8a1eed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
${{ runner.os }}-cargo-index-
- name: Run cargo publish
if : ${{ inputs.dry-run == 'false' }}
if : ${{ !fromJSON(inputs.dry-run) }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish

- name: Run cargo publish --dry-run
if : ${{ inputs.dry-run == 'true' }}
if : ${{ fromJSON(inputs.dry-run) }}
run: cargo publish --dry-run

0 comments on commit c8a1eed

Please sign in to comment.