We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bc3ab7 commit 7ce7840Copy full SHA for 7ce7840
.github/actions/publish/publish-rust/action.yml
@@ -29,4 +29,6 @@ runs:
29
echo "dry-run: '${{ inputs.dry-run }}'"
30
echo "version: '${{ inputs.version }}'"
31
cargo login ${{ inputs.crates-token }}
32
- cargo release --workspace --isolated --no-push --no-tag --verbose $(if [ "${{ inputs.dry-run }}" = "false" ]; then echo --execute --no-confirm; fi) ${{ inputs.version }}
+ cargo release config
33
+ cargo release version --verbose --execute --no-confirm ${{ inputs.version }}
34
+ cargo release publish --verbose $(if [ "${{ inputs.dry-run }}" = "false" ]; then echo --execute --no-confirm; fi)
0 commit comments