Skip to content

Commit

Permalink
add github release workflow
Browse files Browse the repository at this point in the history
(cherry picked from commit cdcba00)
  • Loading branch information
dni authored and oren-z0 committed Dec 9, 2023
1 parent 3bf6e11 commit bde17b2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: release github version
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit bde17b2

Please sign in to comment.