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 2ab5954 commit e2b42d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 Using $inputs.package_manager as package manager
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 e2b42d8

Please sign in to comment.