diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index edd8978..9c2fc57 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,8 +81,11 @@ jobs: DISK_URL: ${{ secrets.DISK_URL }} - name: Install run: yarn - - name: Make - if: startsWith(github.ref, 'refs/tags/') + - name: Make (Linux) + if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest' + run: yarn make + - name: Make (macOS, Windows) + if: startsWith(github.ref, 'refs/tags/') && matrix.os != 'ubuntu-latest' run: yarn make --arch=all env: APPLE_ID: ${{ secrets.APPLE_ID }}