Skip to content

Commit

Permalink
ci: create release
Browse files Browse the repository at this point in the history
  • Loading branch information
cscxj committed Aug 12, 2022
1 parent 921d8ff commit c70822b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:
tags:
- "v*"

name: Create Release

jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@master

- name: Create Release for Tag
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit c70822b

Please sign in to comment.