Make all project documentation bilingual #3
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: 构建 / Build | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: 检出仓库 / Check out repository | |
| uses: actions/checkout@v4 | |
| - name: 构建主程序和安装器 / Build app and installer | |
| shell: powershell | |
| run: .\build.ps1 | |
| - name: 上传安装器产物 / Upload installer artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ThreeFingerDrag-Windows | |
| path: | | |
| dist/ThreeFingerDragInstaller.exe | |
| dist/SHA256SUMS.txt |