We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c2b950 commit 6173ab3Copy full SHA for 6173ab3
1 file changed
.github/workflows/reusable-publish-release.yml
@@ -68,11 +68,11 @@ jobs:
68
run: |
69
if [ -z "${{ secrets.NPM_TOKEN }}" ]; then
70
echo '👻 NPM_TOKEN is not configured.'
71
- echo 'enabled=false\n' >> "$GITHUB_OUTPUT"
+ printf 'enabled=false\n' >> "$GITHUB_OUTPUT"
72
exit 0
73
fi
74
75
- echo 'enabled=true\n' >> "$GITHUB_OUTPUT"
+ printf 'enabled=true\n' >> "$GITHUB_OUTPUT"
76
77
- name: 🔄 Sync NPM Publish Action
78
if: steps.verify_npm_token.outputs.enabled == 'true'
0 commit comments