Skip to content

Commit

Permalink
fix: interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshya0246 committed Nov 3, 2023
1 parent e2b42d8 commit edd94a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publish-if-not-exists/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ runs:
fi
if npm view $package_ref > /dev/null 2>&1 ; then
echo "Package ${{ package_ref }} already published"
echo "Package $package_ref already published"
exit 0
fi
echo "Publishing version ${{ package_ref }}"
echo "Publishing version $package_ref"
echo "Using ${{ inputs.package_manager }} as package manager"
cd ${{ inputs.path }} && ${{ inputs.package_manager }} publish --access public

0 comments on commit edd94a0

Please sign in to comment.