-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |