1
0
mirror of https://github.com/fumiama/RVC-Models-Downloader.git synced 2025-11-24 21:32:52 +09:00
2025-11-20 17:00:03 +08:00

28 lines
532 B
YAML

name: 发行版
on:
push:
tags:
- 'v*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@master
with:
go-version: ^1.25
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@master
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}