Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/get-json-property/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Get a property from a json file using jq
# Examples:
# prop_path: version
# prop_path: devDependencies["@salesforce/dev-scripts"]

# ^ Note: double quotes needed here

inputs:
path:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devScriptsUpdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
id: packageVersion
with:
path: "package.json"
prop_path: "devDependencies.@salesforce/dev-scripts"
prop_path: 'devDependencies["@salesforce/dev-scripts"]'

- run: echo "this repo has version is ${{ steps.packageVersion.outputs.prop }}"
- run: echo "output value will be ${{ !endsWith(steps.packageVersion.outputs.prop, steps.version-info.outputs.version) }}"
Expand Down