gowalk-cicd 1.0.36 → 1.0.37

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.
@@ -1 +1 @@
1
- 1.0.36
1
+ 1.0.37
@@ -1 +1 @@
1
- 1.0.36
1
+ 1.0.37
@@ -1 +1 @@
1
- 1.0.36
1
+ 1.0.37
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gowalk-cicd",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "Zero-config GitHub Actions delivery for iOS TestFlight and Android Google Play.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -58,11 +58,12 @@ jobs:
58
58
  echo "enabled=false" >> "$GITHUB_OUTPUT"
59
59
  fi
60
60
  - name: Materialize restricted iOS Maps key
61
- if: ${{ steps.flutter.outputs.enabled == 'true' && secrets.GOOGLE_MAPS_IOS_KEY != '' }}
61
+ if: ${{ steps.flutter.outputs.enabled == 'true' }}
62
62
  shell: bash
63
63
  env:
64
64
  GOOGLE_MAPS_IOS_KEY: ${{ secrets.GOOGLE_MAPS_IOS_KEY }}
65
65
  run: |
66
+ [ -n "${GOOGLE_MAPS_IOS_KEY:-}" ] || exit 0
66
67
  umask 077
67
68
  printf 'GOOGLE_MAPS_IOS_KEY=%s\n' "$GOOGLE_MAPS_IOS_KEY" > ios/Flutter/MapsKeys.xcconfig
68
69
  - name: Set up Flutter
@@ -317,12 +318,12 @@ jobs:
317
318
  - name: Materialize restricted Android Maps key
318
319
  if: >-
319
320
  ${{ steps.mode.outputs.mode == 'local'
320
- && steps.flutter.outputs.enabled == 'true'
321
- && secrets.GOOGLE_MAPS_ANDROID_KEY != '' }}
321
+ && steps.flutter.outputs.enabled == 'true' }}
322
322
  shell: bash
323
323
  env:
324
324
  GOOGLE_MAPS_ANDROID_KEY: ${{ secrets.GOOGLE_MAPS_ANDROID_KEY }}
325
325
  run: |
326
+ [ -n "${GOOGLE_MAPS_ANDROID_KEY:-}" ] || exit 0
326
327
  umask 077
327
328
  mkdir -p android/app/src/main/res/values
328
329
  printf '%s\n' '<?xml version="1.0" encoding="utf-8"?>' \