gowalk-cicd 1.0.50 → 1.0.51

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/CLAUDE.md CHANGED
@@ -110,7 +110,8 @@ node /path/to/gowalk-cicd/bin/cli.mjs
110
110
  Default-branch deploys continue through the separate backend workflow.
111
111
  - Domain-backed backend deploys fail closed on certificate issuance and the
112
112
  public HTTPS health probe. `select_certbot_account.sh` chooses one existing
113
- ACME account deterministically so multi-account hosts stay non-interactive.
113
+ Let's Encrypt ACME v2 account deterministically so multi-account hosts stay
114
+ non-interactive; legacy v1 account directories are not valid candidates.
114
115
  - The Android action serves two build systems. `android_config.project_kind()`
115
116
  is the only place that decides which; every downstream step branches on the
116
117
  `project_kind` output rather than re-sniffing the repo. Flutter wins the tie
@@ -1 +1 @@
1
- 1.0.50
1
+ 1.0.51
@@ -1 +1 @@
1
- 1.0.50
1
+ 1.0.51
@@ -1 +1 @@
1
- 1.0.50
1
+ 1.0.51
@@ -5,10 +5,11 @@
5
5
  # which account should authorize a new certificate.
6
6
  select_certbot_account() {
7
7
  local accounts_dir="${1:-/etc/letsencrypt/accounts}"
8
+ local server_dir="$accounts_dir/acme-v02.api.letsencrypt.org/directory"
8
9
  local registration
9
10
 
10
11
  registration="$(
11
- find "$accounts_dir" -type f -name regr.json -print 2>/dev/null \
12
+ find "$server_dir" -type f -name regr.json -print 2>/dev/null \
12
13
  | LC_ALL=C sort \
13
14
  | head -1
14
15
  )"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gowalk-cicd",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "Zero-config GitHub Actions delivery for iOS TestFlight and Android Google Play.",
5
5
  "type": "module",
6
6
  "bin": {