Skip to content

Commit

Permalink
Fix warning in make-release workflow (#1032)
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave authored May 14, 2024
1 parent 03d5866 commit 90e90e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
FIRST_BRANCH: '${{ fromJSON(inputs.target_branch)[0] }}'
run: |
# Determine the workspace version.
VERSION=$(cargo metadata --no-deps | jq -er '.packages[0].version')
VERSION=$(cargo metadata --no-deps --format-version 1 | jq -er '.packages[0].version')
LATEST=
if [ "$TARGET_BRANCH" == "$FIRST_BRANCH" ]; then
Expand Down

0 comments on commit 90e90e6

Please sign in to comment.