feat: v1.7 — 构建产物文件名加入版本号并提升至 v1.7 #14
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 | Description | | |
| |------|-------------| | |
| | `XUnityToolkit-WebUI-${{ github.ref_name }}-win-x64.zip` | Portable (Windows x64) | | |
| | `XUnityToolkit-WebUI-${{ github.ref_name }}-win-x64.msi` | MSI Installer (Windows x64) | | |
| ### Installation | |
| - **Portable:** Download the ZIP, extract, and run `XUnityToolkit-WebUI.exe`. | |
| - **Installer:** Download the MSI and double-click to install. | |
| prerelease: false | |
| permissions: | |
| contents: write |