Build things step by step

This commit is contained in:
Felix Rieseberg
2022-05-06 18:39:22 -07:00
parent bea2267f42
commit a7ae665adc
2 changed files with 1636 additions and 1723 deletions

View File

@@ -84,14 +84,24 @@ jobs:
- 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'
- name: Make (Windows)
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'windows-latest'
run: yarn make --arch=all
env:
WINDOWS_CODESIGN_FILE: ${{ steps.write_file.outputs.filePath }}
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
- name: Make (macOS/x64)
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'macOS-latest'
run: yarn make --arch=x64
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
- name: Make (macOS/arm64)
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'macOS-latest'
run: yarn make --arch=arm64
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
WINDOWS_CODESIGN_FILE: ${{ steps.write_file.outputs.filePath }}
WINDOWS_CODESIGN_PASSWORD: ${{ secrets.WINDOWS_CODESIGN_PASSWORD }}
# - name: Archive production artifacts
# uses: actions/upload-artifact@v2
# with:

3341
yarn.lock

File diff suppressed because it is too large Load Diff