From a78c118787daa90efc42e9b506491e36e135c253 Mon Sep 17 00:00:00 2001 From: EATSTEAK Date: Fri, 9 Aug 2024 10:43:03 +0900 Subject: [PATCH] fix: operator of if expression in gh actions --- .github/workflows/astro.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/astro.yml b/.github/workflows/astro.yml index 50bc535..93c125c 100644 --- a/.github/workflows/astro.yml +++ b/.github/workflows/astro.yml @@ -66,7 +66,7 @@ jobs: uses: actions/configure-pages@v5 - name: Setup supportedArchitectures run: | - if [ "${{ steps.detect-package-manager.outputs.manager }}" -eq "yarn" ]; then + if [ "${{ steps.detect-package-manager.outputs.manager }}" == "yarn" ]; then yarn config set supportedArchitectures.os linux yarn config set supportedArchitectures.cpu x64 yarn config set supportedArchitectures.libc glibc