diff --git a/package.json b/package.json index 3b060a7..a46fa6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@techniker-me/hash-map", - "version": "1.0.10", + "version": "1.0.11", "description": "A robust HashMap implementation following OOP SOLID principles", "type": "module", "main": "./node/index.js", diff --git a/scripts/ci-deploy.sh b/scripts/ci-deploy.sh index 48c9418..4c94965 100755 --- a/scripts/ci-deploy.sh +++ b/scripts/ci-deploy.sh @@ -69,5 +69,8 @@ cd dist if [ "${isBeta}" == "true" ]; then bun publish --registry "${registryUrl}" --tag beta else - bun publish --registry "${registryUrl}" -fi \ No newline at end of file + bun publish --registry "${registryUrl}" --tag latest +fi + +echo "Deployment complete!" +exit 0 \ No newline at end of file