We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9216ca commit 82a27f3Copy full SHA for 82a27f3
.github/workflows/pipeline-build-windows.yml
@@ -34,13 +34,13 @@ jobs:
34
- name: Build windows package (production)
35
if: inputs.environment == 'production'
36
run: |
37
- yarn package:prod --target win32-x64 --out ${packagePath}
+ yarn package:prod --target win32-x64 --out ${{ env.packagePath }}
38
39
- name: Build windows package (staging)
40
if: inputs.environment == 'staging'
41
42
sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
43
- yarn package:stage --target win32-x64 --out ${packagePath}
+ yarn package:stage --target win32-x64 --out ${{ env.packagePath }}
44
45
- uses: actions/upload-artifact@v4
46
name: Upload extension artifact
0 commit comments