-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
69 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,69 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
|
||
# Workflow's jobs | ||
jobs: | ||
buildwin: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout git repo | ||
uses: actions/checkout@v2 | ||
# job's id | ||
release: | ||
# job's name | ||
name: build and release electron app | ||
|
||
- name: Install Node and NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: npm | ||
|
||
- name: Install and build | ||
run: | | ||
npm install | ||
npm run postinstall | ||
npm run package | ||
# the type of machine to run the job on | ||
runs-on: ${{ matrix.os }} | ||
|
||
- name: Upload File | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: windows | ||
path: release/build/*exe | ||
# create a build matrix for jobs | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, macos-latest] | ||
|
||
buildmac: | ||
runs-on: macos-latest | ||
# create steps | ||
steps: | ||
# step1: check out repository | ||
- name: Checkout git repo | ||
uses: actions/checkout@v2 | ||
|
||
# step2: setup node env | ||
- name: Install Node and NPM | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
cache: npm | ||
|
||
# step3: npm install and package | ||
- name: Install and build | ||
run: | | ||
npm install | ||
npm run postinstall | ||
npm run package | ||
- name: Upload File | ||
# step4: cleanup artifacts in release | ||
- name: Cleanup artifacts for windows | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
npx rimraf "release/build/!(*.exe)" | ||
- name: Cleanup artifacts for macos | ||
if: matrix.os == 'macos-latest' | ||
run: | | ||
npx rimraf "release/build/!(*.dmg)" | ||
# step5: upload artifacts | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: mac | ||
path: release/build/*dmg | ||
name: ${{ matrix.os }} | ||
path: release/build | ||
|
||
# step6: create release | ||
- name: Create release | ||
uses: softprops/action-gh-release@v1 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: 'release/build/**' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters