Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
  • Loading branch information
fayer3 authored Dec 7, 2019
1 parent 6470dfc commit 36b686f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: push
name: Release
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: GitHub Create Tag Release
uses: Roang-zero1/[email protected]
with:
# Regular expression to verify that the version is in a correct format. Defaults to .* (accept everything).
version_regex: ^v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+ # optional, default is ^.*$
# Any version matching this regular expression will be marked as pre-release. Disabled by default.
create_draft: true # optional, default is false
# Path of file that contains the Markdown formatted changelog.
changelog_file: changelog.txt # optional, default is CHANGELOG.md
# Heading level at which the tag headings exist.
changelog_heading: v # optional, default is h2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 36b686f

Please sign in to comment.