Skip to content

Commit 2f98c4e

Browse files
committed
Fix quoting in os conditions.
1 parent d9cb9f6 commit 2f98c4e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/bsd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949
- name: Checkout
5050
uses: actions/checkout@main
5151
- name: Start FreeBSD
52-
if: ${{ matrix.os == "freebsd" }}
52+
if: ${{ matrix.os == 'freebsd' }}
5353
uses: vmactions/freebsd-vm@v1
5454
with:
5555
arch: ${{ matrix.arch }}
5656
usesh: true
5757
custom-shell-name: vmsh
5858
- name: Start GhostBSD
59-
if: ${{ matrix.os == "ghostbsd" }}
59+
if: ${{ matrix.os == 'ghostbsd' }}
6060
uses: vmactions/ghostbsd-vm@v1
6161
with:
6262
arch: ${{ matrix.arch }}

0 commit comments

Comments
 (0)