Просмотр исходного кода

ci: fix flag to check latest version [skip ci]

Baptiste Augrain 1 год назад
Родитель
Сommit
d493f78ac7
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      .github/workflows/insider-spearhead.yml
  2. 1 1
      .github/workflows/stable-spearhead.yml

+ 1 - 1
.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:

+ 1 - 1
.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: