Skip to content

Commit

Permalink
github action: Create Release On Push Tags
Browse files Browse the repository at this point in the history
  • Loading branch information
gaohan085 committed Feb 27, 2024
1 parent 73d7d8d commit 10527c9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/create-release-on-push-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Create Release On Push Tags

on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1

0 comments on commit 10527c9

Please sign in to comment.