Skip to content

Commit

Permalink
fix: add release (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
diefans authored May 14, 2024
1 parent ebab719 commit d3e81cf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Release

on:
push:
tags:
- "*"
jobs:
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: "buvar"

0 comments on commit d3e81cf

Please sign in to comment.