File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767
6868 cd packages/ui
6969
70- # Check if version contains "beta"
71- if [[ "${{ steps.version-check.outputs.new }}" == *"beta"* ]]; then
72- echo "Publishing @synergycodes/overflow-ui@${{ steps.version-check.outputs.new }} with 'beta' tag…"
73- npm publish --tag beta --access public --provenance
74-
75- echo "Adding 'latest' tag to beta version…"
76- # INFO: The line below marks each beta version as latest. Once we publish stable version we should remove it
77- npm dist-tag add @synergycodes/overflow-ui@${{ steps.version-check.outputs.new }} latest
78- else
79- echo "Publishing @synergycodes/overflow-ui@${{ steps.version-check.outputs.new }} with 'latest' tag…"
80- npm publish --access public --provenance
81- fi
70+ echo "Publishing @synergycodes/overflow-ui@${{ steps.version-check.outputs.new }}…"
71+ npm publish --access public --provenance
8272 else
8373 echo "Version unchanged. Skipping build and publish."
8474 fi
You can’t perform that action at this time.
0 commit comments