Skip to content

Commit

Permalink
updating GitHub pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Sep 18, 2024
1 parent d005bc1 commit b151e3b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit b151e3b

Please sign in to comment.