gowalk-cicd 1.0.31 → 1.0.32

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.31
1
+ 1.0.32
package/action/action.yml CHANGED
@@ -338,6 +338,8 @@ runs:
338
338
  - name: Resolve TestFlight build number
339
339
  if: ${{ inputs.archive == 'true' && inputs.manage-app-store-version == 'false' }}
340
340
  shell: bash
341
+ env:
342
+ APP_STORE_APPLE_ID: ${{ inputs.app-store-apple-id || env.CFG_APP_STORE_APPLE_ID }}
341
343
  run: |
342
344
  set -o pipefail
343
345
  BUILD_NUMBER=$(python3 "${{ github.action_path }}/scripts/next_build_number.py")
@@ -31,6 +31,10 @@ class TestTestFlightVersionSlotWiring(unittest.TestCase):
31
31
 
32
32
  self.assertIn("inputs.manage-app-store-version == 'true'", store_slot)
33
33
  self.assertIn("inputs.manage-app-store-version == 'false'", testflight)
34
+ self.assertIn(
35
+ "APP_STORE_APPLE_ID: ${{ inputs.app-store-apple-id || env.CFG_APP_STORE_APPLE_ID }}",
36
+ testflight,
37
+ )
34
38
  self.assertIn("next_build_number.py", testflight)
35
39
  self.assertNotIn("manage_marketing_version.py", testflight)
36
40
 
@@ -1 +1 @@
1
- 1.0.31
1
+ 1.0.32
@@ -1 +1 @@
1
- 1.0.31
1
+ 1.0.32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gowalk-cicd",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Zero-config GitHub Actions delivery for iOS TestFlight and Android Google Play.",
5
5
  "type": "module",
6
6
  "bin": {