Skip to content

Commit 6173ab3

Browse files
committed
fix: correct NPM_TOKEN gating output
1 parent 4c2b950 commit 6173ab3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/reusable-publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ jobs:
6868
run: |
6969
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
7070
echo '👻 NPM_TOKEN is not configured.'
71-
echo 'enabled=false\n' >> "$GITHUB_OUTPUT"
71+
printf 'enabled=false\n' >> "$GITHUB_OUTPUT"
7272
exit 0
7373
fi
7474
75-
echo 'enabled=true\n' >> "$GITHUB_OUTPUT"
75+
printf 'enabled=true\n' >> "$GITHUB_OUTPUT"
7676
7777
- name: 🔄 Sync NPM Publish Action
7878
if: steps.verify_npm_token.outputs.enabled == 'true'

0 commit comments

Comments
 (0)