Create release.yml

This commit is contained in:
邹景立 2024-08-02 00:38:36 +08:00 committed by GitHub
parent 2e65d799ab
commit e4f8179de7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

@ -0,0 +1,26 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
name: Release
permissions: write-all
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false