feat: 接收区选中文字后状态栏显示选中字节数 #26
Workflow file for this run
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - run: npm install | |
| - run: npm run tauri build | |
| - run: | | |
| cd src-tauri/target/release | |
| Compress-Archive -Path ZCOM.exe -DestinationPath ZCOM-${{ github.ref_name }}-win64.zip | |
| - uses: softprops/action-gh-release@v2 | |
| with: | |
| files: src-tauri/target/release/ZCOM-*.zip |