@wyxos/zephyr 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wyxos/zephyr",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "A streamlined deployment tool for web applications with intelligent Laravel project detection",
5
5
  "type": "module",
6
6
  "main": "./src/index.mjs",
@@ -292,8 +292,12 @@ async function bumpVersion(releaseType, rootDir = process.cwd()) {
292
292
  }
293
293
 
294
294
  async function pushChanges(rootDir = process.cwd()) {
295
- logStep('Pushing commits and tags to origin...')
296
- await runCommand('git', ['push', '--follow-tags'], { cwd: rootDir })
295
+ logStep('Pushing commits to origin...')
296
+ await runCommand('git', ['push'], { cwd: rootDir })
297
+
298
+ logStep('Pushing tags to origin...')
299
+ await runCommand('git', ['push', 'origin', '--tags'], { cwd: rootDir })
300
+
297
301
  logSuccess('Git push completed.')
298
302
  }
299
303