ソースを参照

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
Jon C 6 ヶ月 前
コミット
7e343e7a05
1 ファイル変更1 行追加1 行削除
  1. 1 1
      .github/workflows/publish-rust.yml

+ 1 - 1
.github/workflows/publish-rust.yml

@@ -96,7 +96,7 @@ jobs:
           else
             LEVEL=${{ inputs.level }}
           fi
-          cargo release $LEVEL --manifest-path " ${{ inputs.package_path }}/Cargo.toml" --no-tag --no-publish --no-push --no-confirm --execute
+          cargo release $LEVEL --manifest-path "${{ inputs.package_path }}/Cargo.toml" --no-tag --no-publish --no-push --no-confirm --execute
 
       - name: Check semver
         run: pnpm rust:semver --manifest-path "${{ inputs.package_path }}/Cargo.toml"