We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45bf25d commit 37e7a67Copy full SHA for 37e7a67
.github/actions/version/action.yml
@@ -58,6 +58,6 @@ runs:
58
awk -v version="${{ steps.version.outputs.VERSION }}" '
59
/^\[dependencies\]/ { in_dependencies=1 }
60
/^\[/ && !/^\[dependencies\]/ { in_dependencies=0 }
61
- in_dependencies && /path = ".*"/ { sub(/path = ".*"/, "version = \"" version "\"") } { print }
+ in_dependencies && /path = "[^"]*"/ { sub(/path = "[^"]*"/, "version = \"" version "\"") } { print }
62
' ${{ inputs.manifest-file }} > tmp.toml && mv tmp.toml ${{ inputs.manifest-file }}
63
shell: bash
0 commit comments