mirror of
https://github.com/frappe/books.git
synced 2025-04-03 16:51:51 +00:00
fix: white screen of death in windows
This commit is contained in:
parent
2bfe1786a8
commit
71b438c876
172
.github/workflows/publish.yml
vendored
172
.github/workflows/publish.yml
vendored
@ -3,28 +3,8 @@ name: Publish
|
|||||||
on: workflow_dispatch
|
on: workflow_dispatch
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build-macos:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: macos-13
|
||||||
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- os: macos-14
|
|
||||||
opt: '--mac'
|
|
||||||
dist: 'dist-macOS-arm'
|
|
||||||
|
|
||||||
- os: macos-13
|
|
||||||
opt: '--mac'
|
|
||||||
dist: 'dist-macOS-x86_64'
|
|
||||||
|
|
||||||
- os: ubuntu-latest
|
|
||||||
opt: '--linux'
|
|
||||||
dist: 'dist-linux'
|
|
||||||
|
|
||||||
- os: windows-2019
|
|
||||||
opt: '--win'
|
|
||||||
dist: 'dist-windows'
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Setup node
|
- name: Setup node
|
||||||
uses: actions/setup-node@v2
|
uses: actions/setup-node@v2
|
||||||
@ -62,13 +42,153 @@ jobs:
|
|||||||
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
yarn set version 1.22.18
|
yarn set version 1.22.18
|
||||||
yarn build ${{ matrix.opt }} --publish always
|
yarn build --mac --publish always
|
||||||
|
|
||||||
- name: Tar files
|
- name: Tar files
|
||||||
run: tar -cvf dist.tar dist_electron
|
run: tar -cvf dist-macOS.tar dist_electron
|
||||||
|
|
||||||
- name: Upload Artifacts
|
- name: Upload Artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.dist }}
|
name: dist-macOS
|
||||||
path: dist.tar
|
path: dist-macOS.tar
|
||||||
|
|
||||||
|
build-macos-arm:
|
||||||
|
runs-on: macos-14
|
||||||
|
steps:
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '18.19.0'
|
||||||
|
|
||||||
|
- name: Checkout Books
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
yarn set version 1.22.18
|
||||||
|
yarn
|
||||||
|
|
||||||
|
- name: Set Error Log Creds
|
||||||
|
env:
|
||||||
|
ERR_LOG_KEY: ${{ secrets.ERR_LOG_KEY }}
|
||||||
|
ERR_LOG_URL: ${{ secrets.ERR_LOG_URL }}
|
||||||
|
ERR_LOG_SECRET: ${{ secrets.ERR_LOG_SECRET }}
|
||||||
|
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
|
||||||
|
run: |
|
||||||
|
echo $ERR_LOG_KEY > log_creds.txt
|
||||||
|
echo $ERR_LOG_SECRET >> log_creds.txt
|
||||||
|
echo $ERR_LOG_URL >> log_creds.txt
|
||||||
|
echo $TELEMETRY_URL >> log_creds.txt
|
||||||
|
|
||||||
|
- name: Run build
|
||||||
|
env:
|
||||||
|
APPLE_ID: ${{ secrets.APPLE_ID }}
|
||||||
|
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_PASSWORD }}
|
||||||
|
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
||||||
|
CSC_LINK: ${{ secrets.CSC_LINK }}
|
||||||
|
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
|
||||||
|
CSC_IDENTITY_AUTO_DISCOVERY: true
|
||||||
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
run: |
|
||||||
|
yarn set version 1.22.18
|
||||||
|
yarn build --mac --publish always
|
||||||
|
|
||||||
|
- name: Tar files
|
||||||
|
run: tar -cvf dist-macOS-arm.tar dist_electron
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: dist-macOS-arm
|
||||||
|
path: dist-macOS-arm.tar
|
||||||
|
|
||||||
|
build-linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '18.19.0'
|
||||||
|
|
||||||
|
- name: Checkout Books
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
yarn set version 1.22.18
|
||||||
|
yarn
|
||||||
|
|
||||||
|
- name: Set Error Log Creds
|
||||||
|
env:
|
||||||
|
ERR_LOG_KEY: ${{ secrets.ERR_LOG_KEY }}
|
||||||
|
ERR_LOG_URL: ${{ secrets.ERR_LOG_URL }}
|
||||||
|
ERR_LOG_SECRET: ${{ secrets.ERR_LOG_SECRET }}
|
||||||
|
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
|
||||||
|
run: |
|
||||||
|
echo $ERR_LOG_KEY > log_creds.txt
|
||||||
|
echo $ERR_LOG_SECRET >> log_creds.txt
|
||||||
|
echo $ERR_LOG_URL >> log_creds.txt
|
||||||
|
echo $TELEMETRY_URL >> log_creds.txt
|
||||||
|
|
||||||
|
- name: Run build
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
run: |
|
||||||
|
yarn set version 1.22.18
|
||||||
|
yarn build --linux --publish always
|
||||||
|
|
||||||
|
- name: Tar files
|
||||||
|
run: tar -cvf dist-linux.tar dist_electron
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: dist-linux
|
||||||
|
path: dist-linux.tar
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-2019
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Setup node
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '18.19.0'
|
||||||
|
|
||||||
|
- name: Checkout Books
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: yarn
|
||||||
|
|
||||||
|
- name: Set Error Log Creds
|
||||||
|
env:
|
||||||
|
ERR_LOG_KEY: ${{ secrets.ERR_LOG_KEY }}
|
||||||
|
ERR_LOG_URL: ${{ secrets.ERR_LOG_URL }}
|
||||||
|
ERR_LOG_SECRET: ${{ secrets.ERR_LOG_SECRET }}
|
||||||
|
TELEMETRY_URL: ${{ secrets.TELEMETRY_URL }}
|
||||||
|
run: |
|
||||||
|
echo $ERR_LOG_KEY > log_creds.txt
|
||||||
|
echo $ERR_LOG_SECRET >> log_creds.txt
|
||||||
|
echo $ERR_LOG_URL >> log_creds.txt
|
||||||
|
echo $TELEMETRY_URL >> log_creds.txt
|
||||||
|
|
||||||
|
- name: Run build
|
||||||
|
env:
|
||||||
|
WIN_CSC_LINK: ${{ secrets.WIN_CSC_LINK }}
|
||||||
|
WIN_CSC_KEY_PASSWORD: ${{ secrets.WIN_CSC_KEY_PASSWORD }}
|
||||||
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
|
run: yarn build --win --publish always
|
||||||
|
|
||||||
|
- name: Tar files
|
||||||
|
run: tar -cvf dist-windows.tar dist_electron
|
||||||
|
|
||||||
|
- name: Upload Artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: dist-windows
|
||||||
|
path: dist-windows.tar
|
||||||
|
Loading…
x
Reference in New Issue
Block a user