From fbd1e7c90323df0c88924bba4572a4067e734fc8 Mon Sep 17 00:00:00 2001 From: arg274 <4648027+arg274@users.noreply.github.com> Date: Fri, 5 Jul 2024 15:15:58 +0600 Subject: [PATCH] Remove redundant builds from SSG in main.yml --- .github/workflows/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 09871db..c9d82bd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,10 +5,7 @@ on: jobs: npm: name: Build frontend - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Setup Node.js @@ -24,7 +21,7 @@ jobs: - name: Upload static site files uses: actions/upload-artifact@v4 with: - name: webui-${{ matrix.os }} + name: webui path: web/build cargo: @@ -39,7 +36,7 @@ jobs: - name: Download static site files uses: actions/download-artifact@v4 with: - name: webui-${{ matrix.os }} + name: webui path: web/build - uses: dtolnay/rust-toolchain@stable - name: Build w/ experimental rippers