Skip to content

Commit

Permalink
📝 feat: 增加自动release
Browse files Browse the repository at this point in the history
  • Loading branch information
buyfakett committed Nov 13, 2023
1 parent 8bc00c6 commit b3ab4f6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#https://github.com/yyx990803/release-tag

name: Create Release

on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release for Tag
id: release_tag
uses: yyx990803/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}

0 comments on commit b3ab4f6

Please sign in to comment.