Skip to content

Commit

Permalink
chore(ci): Fix release-please workflows #3 (#28)
Browse files Browse the repository at this point in the history
Use `jq -r` to remove quotes from version, so that `cargo ws` can parse
it.
  • Loading branch information
popzxc authored Sep 3, 2024
1 parent 832194d commit 116ccd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-please-prepare-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Bump version
run: |
NEW_VERSION=$(cat .github/release-please/manifest.json | jq '."."')
NEW_VERSION=$(cat .github/release-please/manifest.json | jq -r '."."')
cargo ws version custom $NEW_VERSION --yes --no-git-commit --exact
- name: Push changes
Expand Down

0 comments on commit 116ccd3

Please sign in to comment.