echo echo echo

This commit is contained in:
miwr 2025-04-08 12:48:35 +02:00
parent d601f743dd
commit b01443b5cc

View file

@ -18,7 +18,13 @@ jq ".version = \"$new_version\"" package.json > temp.json && mv temp.json packag
# Optional: Commit and tag # Optional: Commit and tag
git config --global user.email ${email} git config --global user.email ${email}
git config --global user.name ${user} git config --global user.name ${user}
echo ${email}
echo ${user}
git add package.json git add package.json
echo "adding succeeded"
git commit -m "Bump version to $new_version" git commit -m "Bump version to $new_version"
echo "commiting succeeded"
git tag -a "v$new_version" -m "Release version $new_version" git tag -a "v$new_version" -m "Release version $new_version"
git push main HEAD --tags echo "tagging succeeded"
git push main HEAD --tags
echo "pushing succeeded"