添加rmvb格式 #55
Workflow file for this run
This file contains 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: Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: Build | |
run: make release | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: release/* | |
draft: true | |
generate_release_notes: true | |
body: | | |
* 这是 GitHub Actions 自动化部署,更新日志应该很快会手动更新 |