Skip to content

feat: 更新版本至 1.0.2,在 macOS 上隐藏托盘图标 #2

feat: 更新版本至 1.0.2,在 macOS 上隐藏托盘图标

feat: 更新版本至 1.0.2,在 macOS 上隐藏托盘图标 #2

Workflow file for this run

name: Build and Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'
- name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install frontend dependencies
run: npm install
- name: Build the app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ github.ref_name }}
releaseName: 'CCCS ${{ github.ref_name }}'
releaseBody: 'See the assets to download and install this version.'
releaseDraft: false # 改为 false,自动发布
prerelease: false