feat: 版本提升至 1.4,包含多项功能改进 #7
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
| # Triggered when a v* tag is pushed. | |
| # Delegates all build work to build.yml. | |
| name: Release | |
| on: | |
| push: | |
| tags: ['v*'] | |
| jobs: | |
| release: | |
| uses: ./.github/workflows/build.yml | |
| with: | |
| release_tag: ${{ github.ref_name }} | |
| release_name: "XUnityToolkit-WebUI ${{ github.ref_name }}" | |
| release_body: | | |
| ## XUnityToolkit-WebUI ${{ github.ref_name }} | |
| ### Downloads | |
| | File | Platform | | |
| |------|----------| | |
| | `XUnityToolkit-WebUI-win-x64.zip` | Windows x64 | | |
| ### Installation | |
| Download the ZIP, extract, and run `XUnityToolkit-WebUI.exe`. | |
| prerelease: false | |
| permissions: | |
| contents: write |