Skip to content

Commit da3e430

Browse files
committed
test build
1 parent 82a27f3 commit da3e430

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/actions/install-all-build-libs/action.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ runs:
66
steps:
77
# OS libraries
88
- name: Setup Node
9-
uses: actions/setup-node@v4.0.4
9+
uses: actions/setup-node@v4
1010
with:
1111
node-version: '20.15'
12+
cache: 'yarn'
1213

1314
- name: Install dependencies for root package.js
1415
shell: bash

.github/workflows/pipeline-build-macos.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
with:
4040
arch: x64
4141

42-
- name: Build macos package (staging)
43-
if: inputs.environment == 'staging'
42+
- name: Build macos x64 package (staging)
43+
if: inputs.environment != 'production'
4444
run: |
4545
sed -i '' "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
4646
47-
yarn package:stage --target darwin-${{ inputs.target }} --out ${packagePath}-${{ inputs.target }}.vsix
47+
yarn package:stage --target darwin-x64 --out ${packagePath}-x64.vsix
4848
4949
- name: Build macos x64 package (production)
5050
if: inputs.environment == 'production'
@@ -56,6 +56,14 @@ jobs:
5656
with:
5757
arch: arm64
5858

59+
- name: Build macos arm64 package (staging)
60+
if: inputs.environment != 'production'
61+
run: |
62+
sed -i '' "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
63+
64+
yarn package:stage --target darwin-arm64 --out ${packagePath}-arm64.vsix
65+
66+
5967
- name: Build macos arm64 package (production)
6068
if: inputs.environment == 'production'
6169
run: |

0 commit comments

Comments
 (0)