Skip to content

Commit 7e343e7

Browse files
authored
CI: Remove space in package path (#45)
#### Problem There's an extra space in the manifest path, causing the publish job to fail. #### Summary of changes Remove it
1 parent b503b24 commit 7e343e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
else
9797
LEVEL=${{ inputs.level }}
9898
fi
99-
cargo release $LEVEL --manifest-path " ${{ inputs.package_path }}/Cargo.toml" --no-tag --no-publish --no-push --no-confirm --execute
99+
cargo release $LEVEL --manifest-path "${{ inputs.package_path }}/Cargo.toml" --no-tag --no-publish --no-push --no-confirm --execute
100100
101101
- name: Check semver
102102
run: pnpm rust:semver --manifest-path "${{ inputs.package_path }}/Cargo.toml"

0 commit comments

Comments
 (0)