Skip to content

Commit 7ce7840

Browse files
authored
Split cargo release command (#1279)
1 parent 8bc3ab7 commit 7ce7840

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/publish/publish-rust/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ runs:
2929
echo "dry-run: '${{ inputs.dry-run }}'"
3030
echo "version: '${{ inputs.version }}'"
3131
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 }}
32+
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

Comments
 (0)