We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01dcbbc commit 663ab60Copy full SHA for 663ab60
1 file changed
node-release/action.yml
@@ -107,9 +107,11 @@ runs:
107
- name: Push New Version
108
if: ${{ inputs.semver != 'skip' }}
109
shell: bash
110
+ env:
111
+ PACKAGE_PATH: ${{ inputs.package_path }}
112
run: |
- contents="$(jq '.version = "${{ steps.semver.outputs.new_version }}"' ${{ inputs.package_path }}package.json)"
- echo -E "${contents}" > ${{ inputs.package_path }}package.json
113
+ contents="$(jq '.version = "${{ steps.semver.outputs.new_version }}"' ${PACKAGE_PATH}package.json)"
114
+ echo -E "${contents}" > ${PACKAGE_PATH}package.json
115
116
git add .
117
git config --global user.email "github-bot@pagopa.it"
0 commit comments