Skip to content

Commit

Permalink
fix: Resolve issue during version determination
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Sep 16, 2024
1 parent e3e1b1d commit 58ca020
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"extends": [
"config:base"
],
"labels": [
"bump:patch"
]
}
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>storm-software/renovate-config"]
}
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
working-directory: ${{ inputs.working-directory }}
run: |
PNPM_VERSION=${PNPM_VERSION:-7.30.5}
PKG_JSON=$(cat package.json | jq -r '.package-manager' | awk -F@ '{print $2}')
PKG_JSON=$(cat package.json | jq -r '.packageManager' | awk -F@ '{print $2}')
if [ ! -z $PKG_JSON ]; then
PNPM_VERSION=$PKG_JSON
fi
Expand Down

0 comments on commit 58ca020

Please sign in to comment.