You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if npm publish --tag ${{ steps.publish-tag.outputs.tag }} --access public; then
350
+
publish_status=0
351
+
break
352
+
else
353
+
publish_status=$?
354
+
fi
355
+
done
356
+
357
+
if [ "$publish_status" -ne 0 ]; then
358
+
rm -f .npmrc
359
+
echo "::error::Unable to publish ${{ steps.pkg.outputs.name }}. Refresh NPM_TOKEN_AIOX_SQUADS or NPM_TOKEN with owner access to the @aiox-squads scope."
360
+
exit "$publish_status"
361
+
fi
362
+
328
363
npm access set status=public "${{ steps.pkg.outputs.name }}" --registry="${NPM_REGISTRY}"
364
+
rm -f .npmrc
329
365
echo "✅ Published ${{ steps.pkg.outputs.name }}@${{ steps.pkg.outputs.version }}"
0 commit comments