@@ -63,31 +63,31 @@ jobs:
6363 echo "RI_APP_TYPE=${{ env.RI_APP_TYPE }}"
6464 } >> "${{ env.envFile }}"
6565
66- - name : Download backend
66+ - name : Download backend x64
6767 uses : ./.github/actions/download-backend
6868
69- - name : Build linux package (production)
69+ - name : Build linux package x64 (production)
7070 if : inputs.environment == 'production'
7171 run : |
7272 yarn package:prod --target linux-x64 --out ${packagePath}
7373
74- - name : Build linux package (staging)
74+ - name : Build linux package x64 (staging)
7575 if : inputs.environment == 'staging'
7676 run : |
7777 sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" ${{ env.envFile }}
7878 yarn package:stage --target linux-x64 --out ${packagePath}
7979
80- - name : Download backend
80+ - name : Download backend arm64
8181 uses : ./.github/actions/download-backend
8282 with :
8383 arch : arm64
8484
85- - name : Build linux package (production)
85+ - name : Build linux package arm64 (production)
8686 if : inputs.environment == 'production'
8787 run : |
8888 yarn package:prod --target linux-arm64 --out ${packagePath}
8989
90- - name : Build linux package (staging)
90+ - name : Build linux package arm64 (staging)
9191 if : inputs.environment == 'staging'
9292 run : |
9393 sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" ${{ env.envFile }}
0 commit comments