From 0ef5ada847f563c931e0d11ca2b3e233b73bcf63 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 3 Apr 2024 11:08:40 -0500 Subject: [PATCH] Do not try and handle deps on Windows --- .github/actions/base-setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/base-setup/action.yml b/.github/actions/base-setup/action.yml index bb0178f..f9ed672 100644 --- a/.github/actions/base-setup/action.yml +++ b/.github/actions/base-setup/action.yml @@ -124,8 +124,9 @@ runs: - name: Handle dependency type shell: bash + if: ${{ runner.os != "Windows" }} run: | - set -eux + set -eux} FLAGS="" if [ $DEPENDENCY_TYPE == 'pre' ]; then FLAGS="--prerelease=allow"