mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-02-02 11:08:13 -05:00
📦 Chore: update ci build scripts
This commit is contained in:
parent
b93b4cffe2
commit
56e814a96a
9
.github/workflows/main.yml
vendored
9
.github/workflows/main.yml
vendored
@ -23,7 +23,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-12]
|
os: [ubuntu-latest, macos-11]
|
||||||
|
|
||||||
# create steps
|
# create steps
|
||||||
steps:
|
steps:
|
||||||
@ -48,7 +48,12 @@ jobs:
|
|||||||
yarn
|
yarn
|
||||||
yarn global add xvfb-maybe
|
yarn global add xvfb-maybe
|
||||||
|
|
||||||
- name: Build & release app
|
- name: Build & release app linux
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
|
run: |
|
||||||
|
yarn release
|
||||||
|
- name: Build & release app mac
|
||||||
|
if: matrix.os == 'macos-11'
|
||||||
run: |
|
run: |
|
||||||
yarn build --arm64
|
yarn build --arm64
|
||||||
yarn release
|
yarn release
|
||||||
|
58
.github/workflows/manually.yml
vendored
Normal file
58
.github/workflows/manually.yml
vendored
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
# main.yml
|
||||||
|
|
||||||
|
# Workflow's name
|
||||||
|
name: Build
|
||||||
|
|
||||||
|
# Workflow's trigger
|
||||||
|
on: workflow_dispatch
|
||||||
|
|
||||||
|
# Workflow's jobs
|
||||||
|
jobs:
|
||||||
|
# job's id
|
||||||
|
release:
|
||||||
|
# job's name
|
||||||
|
name: build and release electron app
|
||||||
|
|
||||||
|
# the type of machine to run the job on
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
# create a build matrix for jobs
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-11]
|
||||||
|
|
||||||
|
# create steps
|
||||||
|
steps:
|
||||||
|
# step1: check out repository
|
||||||
|
- name: Check out git repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
# step2: install node env
|
||||||
|
- name: Install Node.js
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node }}
|
||||||
|
|
||||||
|
- name: Install system deps
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
|
run: |
|
||||||
|
sudo apt-get install --no-install-recommends -y icnsutils graphicsmagick xz-utils
|
||||||
|
|
||||||
|
# step3: yarn
|
||||||
|
- name: Yarn install
|
||||||
|
run: |
|
||||||
|
yarn
|
||||||
|
yarn global add xvfb-maybe
|
||||||
|
|
||||||
|
- name: Build & release app linux
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
|
run: |
|
||||||
|
yarn release
|
||||||
|
- name: Build & release app mac
|
||||||
|
if: matrix.os == 'macos-11'
|
||||||
|
run: |
|
||||||
|
yarn build --arm64
|
||||||
|
yarn release
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
@ -19,7 +19,7 @@ init:
|
|||||||
- git config --global core.autocrlf input
|
- git config --global core.autocrlf input
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- ps: Install-Product node 12 x64
|
- ps: Install-Product node 16 x64
|
||||||
- git reset --hard HEAD
|
- git reset --hard HEAD
|
||||||
- yarn
|
- yarn
|
||||||
- node --version
|
- node --version
|
||||||
|
Loading…
Reference in New Issue
Block a user