Build #51
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
name: Build | |
on: | |
watch: | |
types: [started] | |
push: | |
branches: [master] | |
paths-ignore: | |
- '**.md' | |
- '**.spec.js' | |
- '.idea' | |
- '.vscode' | |
- '.dockerignore' | |
- 'Dockerfile' | |
- '.gitignore' | |
- '.github/**' | |
- '!.github/workflows/build.yml' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
if: github.event.repository.owner.id == github.event.sender.id # 自己点的 start | |
strategy: | |
matrix: | |
os: [macos-latest, windows-latest] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: corepack enable | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Build Release Files | |
run: pnpm run build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release_on_${{ matrix. os }} | |
path: | | |
release/**/*.exe | |
release/**/*.dmg | |
!release/**/win-unpacked/*.exe | |
retention-days: 5 |