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 5f302a6 commit 6d7d3f7Copy full SHA for 6d7d3f7
.github/actions/github/create-release/action.yml
@@ -25,6 +25,10 @@ runs:
25
echo "notes-start-tag=${{ inputs.notes-start-tag }}"
26
echo "notes-start-tag-argument="${{ inputs.notes-start-tag != '' && '--notes-start-tag $(inputs.notes-start-tag)' || '' }}"
27
shell: bash
28
+ - name: 'Create git tag ${{ env.release-version }}'
29
+ shell: bash
30
+ run: |
31
+ git tag -a ${{ env.release-version }} -m "${{ env.release-version }}"
32
- name: 'Create GitHub release PolylineAlgorithm ${{ env.release-version }}'
33
34
env:
0 commit comments