Split macOs and Windows builders
This commit is contained in:
parent
6858485e41
commit
58484b87f4
2 changed files with 41 additions and 2 deletions
4
.github/workflows/publish-macos.yml
vendored
4
.github/workflows/publish-macos.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Publish Windows and macOS (Manual)
|
name: Publish macOS (Manual)
|
||||||
|
|
||||||
on: workflow_dispatch
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
@ -35,5 +35,5 @@ jobs:
|
||||||
command: |
|
command: |
|
||||||
npm run postinstall
|
npm run postinstall
|
||||||
npm run build
|
npm run build
|
||||||
npm exec electron-builder -- --publish always --win --mac
|
npm exec electron-builder -- --publish always --mac
|
||||||
on_retry_command: npm cache clean --force
|
on_retry_command: npm cache clean --force
|
||||||
|
|
39
.github/workflows/publish-windows.yml
vendored
Normal file
39
.github/workflows/publish-windows.yml
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
name: Publish Windows (Manual)
|
||||||
|
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [windows-latest]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout git repo
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Install Node and NPM
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
cache: npm
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
npm install --legacy-peer-deps
|
||||||
|
|
||||||
|
- name: Publish releases
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
uses: nick-invision/retry@v2.8.2
|
||||||
|
with:
|
||||||
|
timeout_minutes: 30
|
||||||
|
max_attempts: 3
|
||||||
|
retry_on: error
|
||||||
|
command: |
|
||||||
|
npm run postinstall
|
||||||
|
npm run build
|
||||||
|
npm exec electron-builder -- --publish always --win
|
||||||
|
on_retry_command: npm cache clean --force
|
Reference in a new issue