Skip to content

Commit 2780de1

Browse files
Limit mssqlsuite SQL engine install to Windows only
Updated the build-release workflow to install the local SQL engine via mssqlsuite only on Windows runners, instead of both macOS and Windows. This change clarifies the intended platforms for this step.
1 parent 957563a commit 2780de1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,8 @@ jobs:
173173
# Expose second engine and endpoint on different port
174174
docker run -p 14333:1433 --volume shared:/shared:z --name mssql2 --hostname mssql2 --network localnet -d dbatools/sqlinstance2
175175
176-
- name: Install local SQL engine via mssqlsuite (macOS/Windows only)
177-
if: matrix.os != 'ubuntu-latest'
176+
- name: Install local SQL engine via mssqlsuite (Windows only)
177+
if: matrix.os == 'windows-latest'
178178
uses: potatoqualitee/[email protected]
179179
with:
180180
install: sqlengine

0 commit comments

Comments
 (0)