Selaa lähdekoodia

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 kuukautta sitten
vanhempi
sitoutus
7e343e7a05
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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"