-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
1 parent
ababa51
commit 9372faa
Showing
1 changed file
with
8 additions
and
2 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Create Release | ||
name: Create tag and release | ||
on: | ||
push: | ||
branches: | ||
|
@@ -10,7 +10,13 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@master | ||
|
||
- name: Create Release | ||
- name: Bump version and push tag | ||
id: create_tag | ||
uses: mathieudutour/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Create Github Release | ||
id: create_release | ||
uses: actions/create-release@latest | ||
env: | ||
|