Skip to content

Commit 531c1c1

Browse files
committed
and it wants quotes
1 parent 4a8582e commit 531c1c1

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/dotnet-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
edge-version: stable
5757
- name: Start Xvfb
58-
if: matrix.os == ubuntu
58+
if: matrix.os == 'ubuntu'
5959
run: Xvfb :99 &
6060
- name: Set up .Net Stable
6161
if: matrix.release == 'stable'

.github/workflows/java-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
edge-version: stable
5757
- name: Start Xvfb
58-
if: matrix.os == ubuntu
58+
if: matrix.os == 'ubuntu'
5959
run: Xvfb :99 &
6060
- name: Set up Java
6161
uses: actions/setup-java@v4

.github/workflows/js-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
echo "EDGE_BIN=/Users/runner/hostedtoolcache/msedge/stable/x64/Contents/MacOS/Microsoft Edge" >> "$GITHUB_ENV"
6161
echo "FF_BIN=/Users/runner/hostedtoolcache/firefox/latest/x64/Contents/MacOS/firefox" >> "$GITHUB_ENV"
6262
- name: Set ENV Linux
63-
if: matrix.os == ubuntu
63+
if: matrix.os == 'ubuntu'
6464
run: |
6565
echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> "$GITHUB_ENV"
6666
echo "EDGE_BIN=/opt/hostedtoolcache/msedge/stable/x64/msedge" >> "$GITHUB_ENV"
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
sudo rm -rf $CHROMEWEBDRIVER $EDGEWEBDRIVER $GECKOWEBDRIVER
7878
- name: Start Xvfb
79-
if: matrix.os == ubuntu
79+
if: matrix.os == 'ubuntu'
8080
run: Xvfb :99 &
8181
- name: Setup Node Stable
8282
if: matrix.release == 'stable'

.github/workflows/kotlin-examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
echo "EDGE_BIN=/Users/runner/hostedtoolcache/msedge/stable/x64/Contents/MacOS/Microsoft Edge" >> "$GITHUB_ENV"
6060
echo "FF_BIN=/Users/runner/hostedtoolcache/firefox/latest/x64/Contents/MacOS/firefox" >> "$GITHUB_ENV"
6161
- name: Set ENV Linux
62-
if: matrix.os == ubuntu
62+
if: matrix.os == 'ubuntu'
6363
run: |
6464
echo "CHROME_BIN=${{ steps.setup-chrome.outputs.chrome-path }}" >> "$GITHUB_ENV"
6565
echo "EDGE_BIN=/opt/hostedtoolcache/msedge/stable/x64/msedge" >> "$GITHUB_ENV"
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
sudo rm -rf $CHROMEWEBDRIVER $EDGEWEBDRIVER $GECKOWEBDRIVER
7777
- name: Start Xvfb
78-
if: matrix.os == ubuntu
78+
if: matrix.os == 'ubuntu'
7979
run: Xvfb :99 &
8080
- name: Set up Java
8181
uses: actions/setup-java@v4

.github/workflows/python-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
edge-version: stable
5757
- name: Start Xvfb
58-
if: matrix.os == ubuntu
58+
if: matrix.os == 'ubuntu'
5959
run: Xvfb :99 &
6060
- name: Set up Python
6161
uses: actions/setup-python@v5

.github/workflows/ruby-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
edge-version: stable
5757
- name: Start Xvfb
58-
if: matrix.os == ubuntu
58+
if: matrix.os == 'ubuntu'
5959
run: Xvfb :99 &
6060
- name: Set up Ruby
6161
uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)