From d493f78ac741c52d2d5f70326ccf2bc9217e2807 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Thu, 22 Feb 2024 15:33:36 +0100 Subject: [PATCH] ci: fix flag to check latest version [skip ci] --- .github/workflows/insider-spearhead.yml | 2 +- .github/workflows/stable-spearhead.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/insider-spearhead.yml b/.github/workflows/insider-spearhead.yml index ffa9eab..6cfe07b 100644 --- a/.github/workflows/insider-spearhead.yml +++ b/.github/workflows/insider-spearhead.yml @@ -27,7 +27,7 @@ jobs: VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions OS_NAME: osx VSCODE_ARCH: arm64 - VSCODE_LATEST: ${{ github.event.inputs.dont_update && 'no' || 'yes' }} + VSCODE_LATEST: ${{ github.event.inputs.dont_update == 'true' && 'no' || 'yes' }} VSCODE_QUALITY: insider steps: diff --git a/.github/workflows/stable-spearhead.yml b/.github/workflows/stable-spearhead.yml index 095ad3d..bff28f8 100644 --- a/.github/workflows/stable-spearhead.yml +++ b/.github/workflows/stable-spearhead.yml @@ -24,7 +24,7 @@ jobs: VERSIONS_REPOSITORY: ${{ github.repository_owner }}/versions OS_NAME: osx VSCODE_ARCH: arm64 - VSCODE_LATEST: ${{ github.event.inputs.dont_update && 'no' || 'yes' }} + VSCODE_LATEST: ${{ github.event.inputs.dont_update == 'true' && 'no' || 'yes' }} VSCODE_QUALITY: stable steps: