We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ec490 commit 7818f4fCopy full SHA for 7818f4f
.github/workflows/create-new-release.yml
@@ -13,6 +13,8 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 0
18
19
- name: Create release branch
20
run: git checkout -b release/${{ github.event.inputs.version }}
@@ -43,7 +45,7 @@ jobs:
43
45
run: git merge --no-ff release/${{ github.event.inputs.version }}
44
46
47
- name: Create tag
- run: git tag -a ${{ github.event.inputs.version }}
48
+ run: git tag -a ${{ github.event.inputs.version }} -m v${{ github.event.inputs.version }}
49
50
- name: Checkout develop
51
run: git checkout develop
0 commit comments