Skip to content

Commit 165151c

Browse files
committed
Fix YAML syntax: use \!= 'true' instead of == 'false'
1 parent 296677e commit 165151c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/download-engine-for-testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
fi
2626
2727
- name: Install dependencies
28-
if: steps.check_engine.outputs.exists == 'false'
28+
if: steps.check_engine.outputs.exists != 'true'
2929
run: |
3030
sudo apt-get update
3131
sudo apt-get install -y wget p7zip-full
3232
3333
- name: Download BAR Engine
34-
if: steps.check_engine.outputs.exists == 'false'
34+
if: steps.check_engine.outputs.exists != 'true'
3535
run: |
3636
echo "Downloading BAR Engine 105.1.1-2472-ga5aa45c (supports RmlUi)..."
3737
wget -q "https://github.com/beyond-all-reason/spring/releases/download/spring_bar_%7BBAR105%7D105.1.1-2472-ga5aa45c/spring_bar_.BAR105.105.1.1-2472-ga5aa45c_linux-64-minimal-portable.7z"
@@ -45,7 +45,7 @@ jobs:
4545
ls -la test-engine/ | head -20
4646
4747
- name: Commit and push engine
48-
if: steps.check_engine.outputs.exists == 'false'
48+
if: steps.check_engine.outputs.exists != 'true'
4949
run: |
5050
git config user.name "github-actions[bot]"
5151
git config user.email "github-actions[bot]@users.noreply.github.com"

0 commit comments

Comments
 (0)