Skip to content

Commit 125c83e

Browse files
committed
fix: pin node version for sample distribution
1 parent 2c5c9fe commit 125c83e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/sample-distribution.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,18 @@ jobs:
1515
build_and_deploy_ios_testflight_qa:
1616
name: Build SampleApp iOS and Deploy-${{ github.ref == 'refs/heads/develop' }}
1717
runs-on: [macos-15]
18+
strategy:
19+
matrix:
20+
node-version: [ 24.x ]
1821
steps:
1922
- name: Connect Bot
2023
uses: webfactory/[email protected]
2124
with:
2225
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }}
26+
- name: Use Node.js ${{ matrix.node-version }}
27+
uses: actions/setup-node@v4
28+
with:
29+
node-version: ${{ matrix.node-version }}
2330
- uses: actions/checkout@v3
2431
- uses: maxim-lobanov/setup-xcode@v1
2532
with:
@@ -53,7 +60,14 @@ jobs:
5360
build_and_deploy_android_s3:
5461
name: Build SampleApp Android and Deploy-${{ github.ref == 'refs/heads/develop' }}
5562
runs-on: ubuntu-latest
63+
strategy:
64+
matrix:
65+
node-version: [ 24.x ]
5666
steps:
67+
- name: Use Node.js ${{ matrix.node-version }}
68+
uses: actions/setup-node@v4
69+
with:
70+
node-version: ${{ matrix.node-version }}
5771
- uses: actions/checkout@v2
5872
- uses: actions/setup-java@v3
5973
with:

0 commit comments

Comments
 (0)