gowalk-cicd 1.0.68 → 1.0.69

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
@@ -135,6 +135,12 @@ node /path/to/gowalk-cicd/bin/cli.mjs
135
135
  localization, global activation and builds run through the existing owned relay.
136
136
  The helper's bootstrap and command modes require only Python's standard library;
137
137
  importing the Google API client must not become an unprotected bootstrap prerequisite.
138
+ - Flutter setup scopes `SEGMENT_DOWNLOAD_TIMEOUT_MINS=1` to the composite action's optional
139
+ SDK/pub cache restores. This bounds each cache segment, not the whole cache or SDK download.
140
+ A cache timeout becomes a cache miss; normal proxied SDK setup remains mandatory and its
141
+ errors still fail the job. Never use `continue-on-error` or a timeout around all SDK setup
142
+ to hide an optional cache failure. Do not alter cache keys or disable caches as part of
143
+ this timeout handling.
138
144
  - Backend runtime credentials use the single encrypted `BACKEND_RUNTIME_ENV`
139
145
  secret. The action writes it to host-side `.runtime.env` with mode 0600 and
140
146
  supplies it to Compose after the generated `.env`; never print its content.
package/README.md CHANGED
@@ -26,6 +26,12 @@ are unaffected.
26
26
 
27
27
  Re-run the same command anytime to pull the latest version.
28
28
 
29
+ Flutter's optional SDK and pub cache restores have a one-minute timeout per
30
+ download segment. A slow segment becomes a cache miss and normal SDK setup
31
+ continues through the assigned Google proxy; SDK setup errors still fail the
32
+ job. This bounds individual cache segments, not the total cache or SDK download,
33
+ and keeps existing cache keys and the successful restore/save behavior.
34
+
29
35
  ## Flutter web release
30
36
 
31
37
  The conditional `deploy-web.yml` workflow runs on changes to Flutter source,
@@ -1 +1 @@
1
- 1.0.68
1
+ 1.0.69
@@ -1 +1 @@
1
- 1.0.68
1
+ 1.0.69
@@ -1 +1 @@
1
- 1.0.68
1
+ 1.0.69
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gowalk-cicd",
3
- "version": "1.0.68",
3
+ "version": "1.0.69",
4
4
  "description": "Zero-config GitHub Actions delivery for iOS TestFlight and Android Google Play.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,6 +34,8 @@ jobs:
34
34
  shell: bash
35
35
  run: python3 .github/actions/android-app/scripts/play_store_proxy.py --bootstrap-env
36
36
  - uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 # v2.23.0
37
+ env:
38
+ SEGMENT_DOWNLOAD_TIMEOUT_MINS: "1"
37
39
  with:
38
40
  channel: stable
39
41
  cache: true
@@ -84,6 +84,9 @@ jobs:
84
84
  - name: Set up Flutter
85
85
  if: ${{ steps.flutter.outputs.enabled == 'true' }}
86
86
  uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 # v2.23.0
87
+ env:
88
+ # Optional SDK/pub cache segments must finish promptly; normal SDK setup still fails on errors.
89
+ SEGMENT_DOWNLOAD_TIMEOUT_MINS: "1"
87
90
  with:
88
91
  channel: stable
89
92
  cache: true
@@ -339,6 +342,8 @@ jobs:
339
342
  - name: Set up Flutter
340
343
  if: ${{ steps.mode.outputs.mode == 'local' && steps.flutter.outputs.enabled == 'true' }}
341
344
  uses: subosito/flutter-action@1a449444c387b1966244ae4d4f8c696479add0b2 # v2.23.0
345
+ env:
346
+ SEGMENT_DOWNLOAD_TIMEOUT_MINS: "1"
342
347
  with:
343
348
  channel: stable
344
349
  cache: true