Fix Linux arch

This commit is contained in:
Felix Rieseberg
2022-05-05 10:25:14 -07:00
parent a55d08fafc
commit bea2267f42

View File

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