diff --git a/.github/workflows/insider-linux.yml b/.github/workflows/insider-linux.yml index dd69839bdd8..acb9a568e68 100644 --- a/.github/workflows/insider-linux.yml +++ b/.github/workflows/insider-linux.yml @@ -180,8 +180,9 @@ jobs: - name: Check existing VSCodium tags/releases env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} CHECK_REH: 'no' + DISABLE_APPIMAGE: ${{ vars.DISABLE_INSIDER_APPIMAGE }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: ./check_tags.sh if: env.SHOULD_BUILD == 'yes' @@ -428,7 +429,7 @@ jobs: platform: - amd64 - arm64 - if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && vars.DISABLE_SNAP != 'yes' + if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && vars.DISABLE_INSIDER_SNAP != 'yes' steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/stable-linux.yml b/.github/workflows/stable-linux.yml index 9f09e278d14..419c99d8cc0 100644 --- a/.github/workflows/stable-linux.yml +++ b/.github/workflows/stable-linux.yml @@ -180,7 +180,7 @@ jobs: - name: Check existing VSCodium tags/releases env: CHECK_REH: 'no' - DISABLE_APPIMAGE: ${{ vars.DISABLE_APPIMAGE }} + DISABLE_APPIMAGE: ${{ vars.DISABLE_STABLE_APPIMAGE }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: ./check_tags.sh if: env.SHOULD_BUILD == 'yes' @@ -425,7 +425,7 @@ jobs: platform: - amd64 - arm64 - if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && vars.DISABLE_SNAP != 'yes' + if: needs.check.outputs.SHOULD_DEPLOY == 'yes' && vars.DISABLE_STABLE_SNAP != 'yes' steps: - uses: actions/checkout@v3