Skip to content

Commit

Permalink
Merge pull request #1596 from input-output-hk/sfa/1595-fix-npm-public…
Browse files Browse the repository at this point in the history
…ation-in-release-workflow

Fix variable substitution in npm publication workflow release
  • Loading branch information
sfauvel authored Mar 26, 2024
2 parents 8759bae + fc3f9f8 commit ffdfceb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/actions/publish-npm-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,5 @@ runs:
npm set "//registry.npmjs.org/:_authToken=${NPM_TOKEN}"
npm whoami
cd ${{ inputs.package }}/pkg
npm dist-tag add @${{ inputs.scope }}/${{ inputs.package }}@{{ steps.check_version.outputs.package_version }} latest
npm dist-tag rm @${{ inputs.scope }}/${{ inputs.package }}@{{ steps.check_version.outputs.package_version }} next
npm dist-tag add @${{ inputs.scope }}/${{ inputs.package }}@${{ steps.check_version.outputs.package_version }} latest
npm dist-tag rm @${{ inputs.scope }}/${{ inputs.package }}@${{ steps.check_version.outputs.package_version }} next

0 comments on commit ffdfceb

Please sign in to comment.