Skip to content

Commit 8b72075

Browse files
build: Try to build for all archs
1 parent ee317ec commit 8b72075

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -83,24 +83,12 @@ jobs:
8383
run: yarn
8484
- name: Make
8585
if: startsWith(github.ref, 'refs/tags/')
86-
run: yarn make
86+
run: yarn make --arch=all
8787
env:
8888
APPLE_ID: ${{ secrets.APPLE_ID }}
8989
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
9090
WINDOWS_CODESIGN_FILE: ${{ steps.write_file.outputs.filePath }}
9191
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
92-
- name: Make (ARM)
93-
if: matrix.os == 'macOS-latest' && startsWith(github.ref, 'refs/tags/')
94-
run: yarn make --arch=arm64
95-
env:
96-
APPLE_ID: ${{ secrets.APPLE_ID }}
97-
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
98-
- name: Make (ia32)
99-
if: matrix.os == 'windows-latest' && startsWith(github.ref, 'refs/tags/')
100-
run: yarn make -- --arch=ia32
101-
env:
102-
WINDOWS_CODESIGN_FILE: ${{ steps.write_file.outputs.filePath }}
103-
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
10492
# - name: Archive production artifacts
10593
# uses: actions/upload-artifact@v2
10694
# with:

0 commit comments

Comments
 (0)