@simplysm/sd-cli 7.0.154 → 7.0.155

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": "@simplysm/sd-cli",
3
- "version": "7.0.154",
3
+ "version": "7.0.155",
4
4
  "description": "심플리즘 패키지 - CLI",
5
5
  "author": "김석래",
6
6
  "repository": {
@@ -52,11 +52,11 @@
52
52
  "jsdom": "^19.0.0",
53
53
  "cordova": "^11.0.0",
54
54
  "jszip": "^3.7.1",
55
- "@simplysm/sd-core-common": "7.0.154",
56
- "@simplysm/sd-core-node": "7.0.154",
57
- "@simplysm/sd-service-common": "7.0.154",
58
- "@simplysm/sd-service-server": "7.0.154",
59
- "@simplysm/sd-storage": "7.0.154",
55
+ "@simplysm/sd-core-common": "7.0.155",
56
+ "@simplysm/sd-core-node": "7.0.155",
57
+ "@simplysm/sd-service-common": "7.0.155",
58
+ "@simplysm/sd-service-server": "7.0.155",
59
+ "@simplysm/sd-storage": "7.0.155",
60
60
  "electron": "^17.1.2",
61
61
  "electron-builder": "^22.14.13",
62
62
  "xml2js": "^0.4.23",
@@ -260,7 +260,8 @@ export class SdCliWorkspace {
260
260
  await SdProcess.spawnAsync(`git tag -a "v${this._npmConfig.version}" -m "v${this._npmConfig.version}"`);
261
261
 
262
262
  this._logger.debug("새 버전 푸쉬...");
263
- await SdProcess.spawnAsync("git push origin --tags");
263
+ await SdProcess.spawnAsync("git push");
264
+ await SdProcess.spawnAsync("git push --tags");
264
265
  }
265
266
 
266
267
  this._logger.debug("배포 시작...");