From ef3a39fb36b47e2f9ab9831c49f2ba31ff54fbb0 Mon Sep 17 00:00:00 2001 From: Joel Carter Date: Mon, 12 Aug 2024 03:41:08 -0500 Subject: [PATCH] Only build 1 OS in matrix --- .github/workflows/build-main.yml | 60 ++++++++++++++++---------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/build-main.yml b/.github/workflows/build-main.yml index 62e5ef0..c873cd5 100644 --- a/.github/workflows/build-main.yml +++ b/.github/workflows/build-main.yml @@ -22,33 +22,33 @@ jobs: run: yarn cycle - name: build run: yarn build - build-windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - with: - ref: ${{ github.head_ref }} - fetch-depth: 0 - - uses: actions/setup-node@v2 - with: - node-version: "20" - - name: windows-defender - run: powershell -Command Add-MpPreference -ExclusionPath "." - - name: install - run: yarn install --network-timeout 1000000 - - name: build - run: yarn build - build-macos: - runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - with: - ref: ${{ github.head_ref }} - fetch-depth: 0 - - uses: actions/setup-node@v2 - with: - node-version: "20" - - name: install - run: yarn install - - name: build - run: yarn build + # build-windows: + # runs-on: windows-latest + # steps: + # - uses: actions/checkout@v2 + # with: + # ref: ${{ github.head_ref }} + # fetch-depth: 0 + # - uses: actions/setup-node@v2 + # with: + # node-version: "20" + # - name: windows-defender + # run: powershell -Command Add-MpPreference -ExclusionPath "." + # - name: install + # run: yarn install --network-timeout 1000000 + # - name: build + # run: yarn build + # build-macos: + # runs-on: macos-latest + # steps: + # - uses: actions/checkout@v2 + # with: + # ref: ${{ github.head_ref }} + # fetch-depth: 0 + # - uses: actions/setup-node@v2 + # with: + # node-version: "20" + # - name: install + # run: yarn install + # - name: build + # run: yarn build