Skip to content

Commit d907c93

Browse files
author
strausr
committed
fix: publish to latest tag so installers get most recent version
Use --tag latest instead of --tag beta so npm i create-cloudinary-react and npx create-cloudinary-react get the newest release.
1 parent 16c1ba3 commit d907c93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ jobs:
171171
echo "Publishing to npm..."
172172
173173
# Publish using npm publish which supports OIDC/trusted publishing
174-
# --tag beta required for prerelease versions (1.0.0-beta.x)
175-
npm publish --provenance --access public --tag beta
174+
# --tag latest so installers get the most recent version (npm i create-cloudinary-react / npx create-cloudinary-react)
175+
npm publish --provenance --access public --tag latest
176176
echo "✓ Published $VERSION_AFTER to npm"
177177
else
178178
echo "No version change detected (version: $VERSION_AFTER)"

0 commit comments

Comments
 (0)