2 Commits
2.2.1 ... 2.3.0

Author SHA1 Message Date
synt-xerror
308db818da [dev] stage order on deploy 2026-03-15 13:06:29 -03:00
synt-xerror
541f11af6d Bump version to 2.2.1 2026-03-15 13:04:36 -03:00
3 changed files with 10 additions and 10 deletions

View File

@@ -24,13 +24,6 @@ EOF
# mudar para a branch # mudar para a branch
git checkout $BRANCH || { echo "Error ao change to $BRANCH"; exit 1; } git checkout $BRANCH || { echo "Error ao change to $BRANCH"; exit 1; }
# adicionar alterações e commit
git add .
git commit -m "$COMMIT_MSG"
# push
git push origin $BRANCH
# se for master, atualizar versão # se for master, atualizar versão
if [ "$BRANCH" == "master" ] && [ -n "$VERSION" ]; then if [ "$BRANCH" == "master" ] && [ -n "$VERSION" ]; then
echo "Updating version to $VERSION" echo "Updating version to $VERSION"
@@ -41,4 +34,11 @@ if [ "$BRANCH" == "master" ] && [ -n "$VERSION" ]; then
git push origin $VERSION git push origin $VERSION
fi fi
# adicionar alterações e commit
git add .
git commit -m "$COMMIT_MSG"
# push
git push origin $BRANCH
echo "Deploy completed." echo "Deploy completed."

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "whatsapp-bot", "name": "whatsapp-bot",
"version": "2.2.0", "version": "2.2.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "whatsapp-bot", "name": "whatsapp-bot",
"version": "2.2.0", "version": "2.2.1",
"dependencies": { "dependencies": {
"node-addon-api": "^7", "node-addon-api": "^7",
"node-gyp": "^12.2.0", "node-gyp": "^12.2.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "whatsapp-bot", "name": "whatsapp-bot",
"version": "2.2.0", "version": "2.2.1",
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"node-addon-api": "^7", "node-addon-api": "^7",