fix(actions): fix if statement

This commit is contained in:
JellyBrick
2023-10-16 22:55:04 +09:00
committed by GitHub
parent 9a4e98063b
commit 4e4af5e830

View File

@ -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 }}