ci: rename variable

This commit is contained in:
Baptiste Augrain
2022-10-23 19:47:16 +02:00
parent ad3016dabf
commit fb37594000

View File

@@ -23,10 +23,10 @@ jobs:
container: container:
image: vscodium/vscodium-linux-build-agent:bionic-x64 image: vscodium/vscodium-linux-build-agent:bionic-x64
env: env:
GITHUB_BRANCH: insider GIT_BRANCH: insider
VSCODE_QUALITY: insider VSCODE_QUALITY: insider
outputs: outputs:
GITHUB_BRANCH: ${{ env.GITHUB_BRANCH }} GIT_BRANCH: ${{ env.GIT_BRANCH }}
MS_COMMIT: ${{ env.MS_COMMIT }} MS_COMMIT: ${{ env.MS_COMMIT }}
MS_TAG: ${{ env.MS_TAG }} MS_TAG: ${{ env.MS_TAG }}
RELEASE_VERSION: ${{ env.RELEASE_VERSION }} RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
@@ -37,7 +37,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
ref: ${{ env.GITHUB_BRANCH }} ref: ${{ env.GIT_BRANCH }}
- name: Clone VSCode repo - name: Clone VSCode repo
env: env:
@@ -53,7 +53,7 @@ jobs:
container: container:
image: ${{ matrix.image }} image: ${{ matrix.image }}
env: env:
GITHUB_BRANCH: ${{ needs.check.outputs.GITHUB_BRANCH }} GIT_BRANCH: ${{ needs.check.outputs.GIT_BRANCH }}
MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }} MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
MS_TAG: ${{ needs.check.outputs.MS_TAG }} MS_TAG: ${{ needs.check.outputs.MS_TAG }}
RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }} RELEASE_VERSION: ${{ needs.check.outputs.RELEASE_VERSION }}
@@ -65,13 +65,13 @@ jobs:
- vscode_arch: x64 - vscode_arch: x64
image: vscodium/vscodium-linux-build-agent:centos7-devtoolset8-x64 image: vscodium/vscodium-linux-build-agent:centos7-devtoolset8-x64
- vscode_arch: arm64 - vscode_arch: arm64
image: ubuntu:20.04 image: vscodium/vscodium-linux-build-agent:bionic-x64
if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes' if: needs.check.outputs.SHOULD_BUILD == 'yes' || needs.check.outputs.SHOULD_DEPLOY == 'yes'
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
ref: ${{ env.GITHUB_BRANCH }} ref: ${{ env.GIT_BRANCH }}
- name: Clone VSCode repo - name: Clone VSCode repo
run: ./get_repo.sh run: ./get_repo.sh
@@ -113,7 +113,7 @@ jobs:
env: env:
APP_NAME: VSCodium APP_NAME: VSCodium
ASSETS_REPOSITORY: ${{ github.repository }}-insiders ASSETS_REPOSITORY: ${{ github.repository }}-insiders
GITHUB_BRANCH: ${{ needs.check.outputs.GITHUB_BRANCH }} GIT_BRANCH: ${{ needs.check.outputs.GIT_BRANCH }}
MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }} MS_COMMIT: ${{ needs.check.outputs.MS_COMMIT }}
MS_TAG: ${{ needs.check.outputs.MS_TAG }} MS_TAG: ${{ needs.check.outputs.MS_TAG }}
OS_NAME: linux OS_NAME: linux
@@ -141,7 +141,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
ref: ${{ env.GITHUB_BRANCH }} ref: ${{ env.GIT_BRANCH }}
- name: Clone VSCode repo - name: Clone VSCode repo
run: ./get_repo.sh run: ./get_repo.sh