|
@@ -70,6 +70,8 @@ jobs:
|
|
|
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
|
|
|
SHOULD_BUILD: 'yes'
|
|
|
VSCODE_ARCH: 'x64'
|
|
|
+ outputs:
|
|
|
+ BUILD_SOURCEVERSION: ${{ env.BUILD_SOURCEVERSION }}
|
|
|
if: needs.check.outputs.SHOULD_BUILD == 'yes' || github.event.inputs.generate_assets == 'true'
|
|
|
|
|
|
steps:
|
|
@@ -131,6 +133,7 @@ jobs:
|
|
|
container:
|
|
|
image: ${{ matrix.image }}
|
|
|
env:
|
|
|
+ BUILD_SOURCEVERSION: ${{ needs.compile.outputs.BUILD_SOURCEVERSION }}
|
|
|
MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
|
|
|
MS_TAG: ${{ needs.check.outputs.MS_TAG }}
|
|
|
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
|
|
@@ -221,6 +224,7 @@ jobs:
|
|
|
# - vscode_arch: ppc64le
|
|
|
# npm_arch: ppc64
|
|
|
env:
|
|
|
+ BUILD_SOURCEVERSION: ${{ needs.compile.outputs.BUILD_SOURCEVERSION }}
|
|
|
MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
|
|
|
MS_TAG: ${{ needs.check.outputs.MS_TAG }}
|
|
|
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
|