From b151e3b2402392432807747aafa622ae7aadf337 Mon Sep 17 00:00:00 2001 From: agracio Date: Wed, 18 Sep 2024 17:06:16 +0100 Subject: [PATCH] updating GitHub pipeline --- .github/workflows/build.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0358426..8539239 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,14 +47,11 @@ jobs: id: electron-test-version shell: bash run: | - if [ '${{ inputs.build-version }}' == '29.0.0' ]; then - echo "Electron: 29.4.6" + if [[ '${{ inputs.build-version }}' == '29.0.0' ]]; then echo "test-version=29.4.6" >> $GITHUB_OUTPUT - elif [ '${{ inputs.build-version }}' == '30.0.0' ]; then - echo "Electron: 30.5.1" + elif [[ '${{ inputs.build-version }}' == '30.0.0' ]]; then echo "test-version=30.5.1" >> $GITHUB_OUTPUT - elif [ '${{ inputs.build-version }}' == '31.0.0' ]; then - echo "Electron: 31.6.0" + elif [[ '${{ inputs.build-version }}' == '31.0.0' ]]; then echo "test-version=31.6.0" >> $GITHUB_OUTPUT else core.setFailed("Unable to resolve Electron version for testing")