shipup 0.2.0 → 0.2.1

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 0.2.1 - 2026-07-13
6
+
7
+ - Publish `shipup` to npm and document global installation.
8
+ - Publish future GitHub Releases through OIDC trusted publishing with automatic
9
+ provenance and strict release-tag validation.
10
+
5
11
  ## 0.2.0 - 2026-07-13
6
12
 
7
13
  - Add Android multi-market upload and status commands for Huawei, Honor, OPPO,
package/README.md CHANGED
@@ -25,14 +25,14 @@ performs local validation without network requests.
25
25
 
26
26
  ## Install
27
27
 
28
- Until the first npm registry release, install from a checkout or a pinned GitHub tag:
29
-
30
28
  ```bash
31
- npm install
32
- npm link
29
+ npm install --global shipup
33
30
  shipup --help
34
31
  ```
35
32
 
33
+ Published releases are delivered from GitHub Actions to npm through OIDC trusted
34
+ publishing; the workflow does not store a long-lived npm token.
35
+
36
36
  ## Quick start
37
37
 
38
38
  ```bash
package/README.zh-CN.md CHANGED
@@ -20,14 +20,14 @@
20
20
 
21
21
  ## 安装
22
22
 
23
- 首次 npm registry 发布前,可从仓库或固定 Git tag 安装:
24
-
25
23
  ```bash
26
- npm install
27
- npm link
24
+ npm install --global shipup
28
25
  shipup --help
29
26
  ```
30
27
 
28
+ 正式版本由 GitHub Actions 通过 OIDC Trusted Publishing 发布到 npm,工作流中不保存
29
+ 长期 npm token。
30
+
31
31
  ## 凭证
32
32
 
33
33
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shipup",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Cross-platform release CLI for App Store Connect, AppGallery Connect, and Android app markets",
5
5
  "type": "module",
6
6
  "bin": {
@@ -21,7 +21,7 @@
21
21
  "scripts": {
22
22
  "build": "tsc -p tsconfig.json",
23
23
  "typecheck": "tsc -p tsconfig.json --noEmit",
24
- "check": "npm run typecheck && node --check shipup.mjs && node --check lib/common.mjs && node --check lib/harmony.mjs && node --check lib/huawei.mjs && node --check lib/ios.mjs && node --check scripts/security-scan.mjs",
24
+ "check": "npm run typecheck && node --check shipup.mjs && node --check lib/common.mjs && node --check lib/harmony.mjs && node --check lib/huawei.mjs && node --check lib/ios.mjs && node --check scripts/security-scan.mjs && node --check scripts/verify-release-tag.mjs",
25
25
  "security": "node scripts/security-scan.mjs",
26
26
  "test": "npm run build && node --test test/*.test.mjs",
27
27
  "test:coverage": "npm run build && node --test --experimental-test-coverage test/*.test.mjs",