forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 2
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
rustam810
committed
Nov 1, 2023
1 parent
29aaba4
commit b28405a
Showing
1 changed file
with
26 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,26 @@ | ||
name: Create Tag on Master Merge | ||
|
||
on: | ||
push: | ||
branches: | ||
- e8 | ||
- 3.6.5-e8 | ||
|
||
jobs: | ||
create_tag: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Read version from file | ||
id: version | ||
run: echo "version=$(cat version)" >> $GITHUB_OUTPUT | ||
|
||
- name: Create tag | ||
uses: rickstaa/action-create-tag@v1 | ||
id: "tag_create" | ||
with: | ||
tag: ${{ steps.version.outputs.version }} | ||
force_push_tag: true |