Skip to content

Commit f79606f

Browse files
authored
Merge pull request #35 from Cardinal-Cryptography/obrok/quotes
Add missing quotes
2 parents 5b39a6c + 719c226 commit f79606f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/publish-if-newer/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
shell: bash
1515
run: |
1616
if [ $(curl https://crates.io/api/v1/crates/${{ inputs.package }} | jq '.crate.newest_version') \
17-
!= $(cargo metadata | jq '.packages[] | select(.name == ${{ inputs.package }}) | .version') ]
17+
!= $(cargo metadata | jq '.packages[] | select(.name == "${{ inputs.package }}") | .version') ]
1818
then
1919
cargo publish -p ${{ inputs.package }}
2020
else

0 commit comments

Comments
 (0)