chore: 优化渠道“额外参数”提示文案,明确 overwrite/per_model/pre_add 行为 (#873) #89
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: Windows Release | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| - "!*-alpha*" | |
| jobs: | |
| release: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22.20.0 | |
| - name: Build Frontend | |
| env: | |
| CI: "" | |
| run: | | |
| cd web | |
| npm install | |
| VITE_APP_VERSION=$(git describe --tags) npm run build | |
| cd .. | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.25.0" | |
| - name: Build Backend | |
| run: | | |
| go mod download | |
| go build -ldflags "-s -w -X 'one-api/common/config.Version=$(git describe --tags)'" -o one-api.exe | |
| - name: Release | |
| uses: softprops/action-gh-release@v1 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: one-api.exe | |
| draft: true | |
| generate_release_notes: true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GT_Token }} |