From b1347db35161256f0836951ab9ad74b15374e7dc Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Thu, 22 Feb 2024 15:31:48 +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 3eadf57..ffa9eab 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 != 'true' }} + VSCODE_LATEST: ${{ github.event.inputs.dont_update && 'no' || 'yes' }} VSCODE_QUALITY: insider steps: diff --git a/.github/workflows/stable-spearhead.yml b/.github/workflows/stable-spearhead.yml index f44783c..095ad3d 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 != 'true' }} + VSCODE_LATEST: ${{ github.event.inputs.dont_update && 'no' || 'yes' }} VSCODE_QUALITY: stable steps: