Update style.css #26
Workflow file for this run
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
# main.yml | |
# Workflow's name | |
name: Build SysMocap For Win/Mac | |
# Workflow's trigger | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
# Workflow's jobs | |
jobs: | |
# job's id | |
release: | |
# job's name | |
name: build and release sysmocap | |
# the type of machine to run the job on | |
runs-on: ${{ matrix.os }} | |
# create a build matrix for jobs | |
strategy: | |
matrix: | |
os: [windows-2019, macos-latest] | |
steps: | |
# step1: check out repository | |
- name: Check out git repository | |
uses: actions/checkout@v3 | |
# step2: install node env | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
# step3: npm install | |
- name: npm install | |
run: | | |
npm install | |
# step4: build app for mac/win | |
- name: build windows app | |
if: matrix.os == 'windows-2019' | |
run: | | |
npm run package:win64 | |
npm run zip:win64 | |
env: | |
GH_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
- name: build mac app | |
if: matrix.os == 'macos-latest' | |
run: | | |
npm run package:mac64 | |
npm run dmg | |
env: | |
GH_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
# step6: upload artifacts | |
- name: upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.os }} | |
path: OutApp/packages | |
# step7: create release | |
- name: release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: "OutApp/packages/**" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |