1
0
mirror of https://github.com/fumiama/RVC-Models-Downloader.git synced 2026-06-06 00:40:25 +08:00
This commit is contained in:
源文雨
2024-04-18 01:52:23 +09:00
parent c5347fa574
commit 04d3d611b0
40 changed files with 1073 additions and 0 deletions

25
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
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
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@master
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}