fixed:修复紧急bug #110
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
name: Build/release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
# 构建网页版 | |
web: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build web | |
run: pnpm build:web | |
env: | |
GH_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
- name: Deploy website | |
# 部署github page | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
branch: gh-pages | |
folder: out/renderer | |
release: | |
permissions: | |
contents: write | |
runs-on: | |
${{ matrix.os }} # 使用矩阵策略来确定操作系统 | |
# 这个定义会启用3个系统进行打包 | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install pnpm | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build Windows | |
if: startsWith(matrix.os, 'windows') | |
env: | |
GH_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
run: | | |
pnpm build:win --publish onTag | |
- name: Build Mac | |
if: startsWith(matrix.os, 'macos') | |
env: | |
GH_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
run: | | |
pnpm build:mac --publish onTag | |
# - name: Install Snapcraft | |
# if: startsWith(matrix.os, 'ubuntu') | |
# uses: samuelmeuli/action-snapcraft@v2 | |
- name: Build Linux | |
if: startsWith(matrix.os, 'ubuntu') | |
env: | |
GH_TOKEN: ${{ secrets.SECRET_TOKEN }} | |
run: | | |
pnpm build:linux --publish onTag | |
- name: upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.os }} | |
path: | | |
dist/bookwise-*.exe | |
dist/bookwise-*.dmg | |
dist/bookwise-*.zip | |
dist/bookwise-*.blockmap | |
dist/bookwise-*.snap | |
dist/bookwise-*.AppImage | |
dist/bookwise-*.deb | |
dist/bookwise-*.rpm | |
- name: release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: dist/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.SECRET_TOKEN }} |