From 4e4af5e8309737128db2add7be998fab70590e89 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Mon, 16 Oct 2023 22:55:04 +0900 Subject: [PATCH] fix(actions): fix if statement --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 17a563af..76c67631 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,14 +27,14 @@ jobs: run_install: false - name: Setup NodeJS - if: startsWith(matrix.os, 'macOS') != true && github.repository != 'th-ch/youtube-music' + if: startsWith(matrix.os, 'macOS') != true uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_VERSION }} cache: 'pnpm' - name: Setup NodeJS for macOS - if: startsWith(matrix.os, 'macOS') && github.repository != 'th-ch/youtube-music' + if: startsWith(matrix.os, 'macOS') uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_VERSION }} @@ -104,14 +104,14 @@ jobs: run_install: false - name: Setup NodeJS - if: startsWith(matrix.os, 'macOS') != true && github.repository != 'th-ch/youtube-music' + if: startsWith(matrix.os, 'macOS') != true uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_VERSION }} cache: 'pnpm' - name: Setup NodeJS for macOS - if: startsWith(matrix.os, 'macOS') && github.repository != 'th-ch/youtube-music' + if: startsWith(matrix.os, 'macOS') uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_VERSION }}