From edd94a0b7229238d0af806dc18635dd3dd0e8118 Mon Sep 17 00:00:00 2001 From: lakshya Date: Fri, 3 Nov 2023 17:02:00 -0400 Subject: [PATCH] fix: interpolation --- publish-if-not-exists/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish-if-not-exists/action.yml b/publish-if-not-exists/action.yml index ad5d35b..4e19ada 100644 --- a/publish-if-not-exists/action.yml +++ b/publish-if-not-exists/action.yml @@ -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