Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dwertent committed Feb 14, 2025
1 parent 25dc835 commit d2631c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/update-json/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
set -e
echo "Updating ${{ inputs.file }}"
jq --arg value "${{ inputs.value }}" '.[$key] = $value' "${{ inputs.file }}" > temp.json && mv temp.json "${{ inputs.file }}"
jq --arg key "${{ inputs.key }}" --arg value "${{ inputs.value }}" '.[$key] = $value' "${{ inputs.file }}" > temp.json && mv temp.json "${{ inputs.file }}"
echo "Updated ${{ inputs.file }}:"
cat "${{ inputs.file }}"

0 comments on commit d2631c4

Please sign in to comment.