Merge pull request #91 from caorushizi/dev/plugins #106
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
# build.yml | |
# Workflow's name | |
name: Build Downloader App. | |
# Workflow's trigger | |
on: | |
push: | |
branches: | |
- master | |
# 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: [windows-latest, macos-12] | |
# create steps | |
steps: | |
# step1: check out repository | |
- name: Check out git repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
# step2: install node env | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
# step3: install go env | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21.5" | |
cache-dependency-path: "internal/go.sum" | |
# step4: install python env | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
# step5: install pnpm env | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
run_install: true | |
- name: Build & release app | |
run: pnpm run release | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
APP_TD_APPID: ${{ secrets.APP_TD_APPID }} | |
APP_CLARITY_APPID: ${{ secrets.APP_CLARITY_APPID}} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: artifact | |
path: packages/main/release/media-downloader-setup-* |