@daemux/store-automator 0.10.1 → 0.10.2

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.
@@ -5,14 +5,14 @@
5
5
  },
6
6
  "metadata": {
7
7
  "description": "App Store & Google Play automation for Flutter apps",
8
- "version": "0.10.1"
8
+ "version": "0.10.2"
9
9
  },
10
10
  "plugins": [
11
11
  {
12
12
  "name": "store-automator",
13
13
  "source": "./plugins/store-automator",
14
14
  "description": "3 agents for app store publishing: reviewer, meta-creator, media-designer",
15
- "version": "0.10.1",
15
+ "version": "0.10.2",
16
16
  "keywords": ["flutter", "app-store", "google-play", "fastlane"]
17
17
  }
18
18
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daemux/store-automator",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "description": "Full App Store & Google Play automation for Flutter apps with Claude Code agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "store-automator",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "description": "App Store & Google Play automation agents for Flutter app publishing",
5
5
  "author": {
6
6
  "name": "Daemux"
@@ -5,12 +5,12 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
5
5
  source "$SCRIPT_DIR/../common/read-config.sh"
6
6
 
7
7
  # --- Validate prerequisites ---
8
- if [ -z "${CM_KEYSTORE_PATH:-}" ]; then
9
- echo "ERROR: CM_KEYSTORE_PATH not set. Run setup-keystore.sh first." >&2
8
+ if [ -z "${KEYSTORE_PATH:-}" ]; then
9
+ echo "ERROR: KEYSTORE_PATH not set. Run setup-keystore.sh first." >&2
10
10
  exit 1
11
11
  fi
12
- if [ ! -f "$CM_KEYSTORE_PATH" ]; then
13
- echo "ERROR: Keystore not found at $CM_KEYSTORE_PATH" >&2
12
+ if [ ! -f "$KEYSTORE_PATH" ]; then
13
+ echo "ERROR: Keystore not found at $KEYSTORE_PATH" >&2
14
14
  exit 1
15
15
  fi
16
16
  if ! command -v flutter &>/dev/null; then
@@ -20,8 +20,8 @@ fi
20
20
 
21
21
  echo "Building Android AAB..."
22
22
  echo " APP_ROOT: $APP_ROOT"
23
- echo " CM_KEYSTORE_PATH: $CM_KEYSTORE_PATH"
24
- echo " CM_KEY_ALIAS: ${CM_KEY_ALIAS:-not set}"
23
+ echo " KEYSTORE_PATH: $KEYSTORE_PATH"
24
+ echo " KEY_ALIAS: ${KEY_ALIAS:-not set}"
25
25
 
26
26
  # --- Build AAB ---
27
27
  cd "$APP_ROOT"
@@ -64,17 +64,17 @@ fi
64
64
  echo "Keystore validated successfully"
65
65
 
66
66
  # --- Set Gradle signing env vars (matches build.gradle.kts) ---
67
- export CM_KEYSTORE_PATH="$KEYSTORE_ABS_PATH"
68
- export CM_KEYSTORE_PASSWORD="$KEYSTORE_PASSWORD"
69
- export CM_KEY_ALIAS="upload"
70
- export CM_KEY_PASSWORD="$KEYSTORE_PASSWORD"
67
+ export KEYSTORE_PATH="$KEYSTORE_ABS_PATH"
68
+ export KEYSTORE_PASSWORD="$KEYSTORE_PASSWORD"
69
+ export KEY_ALIAS="upload"
70
+ export KEY_PASSWORD="$KEYSTORE_PASSWORD"
71
71
 
72
72
  persist_to_github_env \
73
- "CM_KEYSTORE_PATH=$CM_KEYSTORE_PATH" \
74
- "CM_KEYSTORE_PASSWORD=$CM_KEYSTORE_PASSWORD" \
75
- "CM_KEY_ALIAS=$CM_KEY_ALIAS" \
76
- "CM_KEY_PASSWORD=$CM_KEY_PASSWORD"
73
+ "KEYSTORE_PATH=$KEYSTORE_PATH" \
74
+ "KEYSTORE_PASSWORD=$KEYSTORE_PASSWORD" \
75
+ "KEY_ALIAS=$KEY_ALIAS" \
76
+ "KEY_PASSWORD=$KEY_PASSWORD"
77
77
 
78
78
  echo "Android keystore setup complete"
79
- echo " CM_KEYSTORE_PATH=$CM_KEYSTORE_PATH"
80
- echo " CM_KEY_ALIAS=$CM_KEY_ALIAS"
79
+ echo " KEYSTORE_PATH=$KEYSTORE_PATH"
80
+ echo " KEY_ALIAS=$KEY_ALIAS"
@@ -24,9 +24,6 @@ fi
24
24
  export FLUTTER_ROOT=$(yq '.flutter_root // "."' "$CONFIG")
25
25
  export APP_ROOT="$PROJECT_ROOT/$FLUTTER_ROOT"
26
26
 
27
- # CI scripts export PROJECT_ROOT for absolute path resolution in Fastfiles
28
- export CM_BUILD_DIR="$PROJECT_ROOT"
29
-
30
27
  # App identity
31
28
  export BUNDLE_ID=$(yq '.app.bundle_id // ""' "$CONFIG")
32
29
  export PACKAGE_NAME=$(yq '.app.package_name // ""' "$CONFIG")