File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 7171 if : steps.release.outputs.released == 'true' && steps.release.outputs.is_prerelease == 'false'
7272 env :
7373 FULL_VERSION_TAG : ${{ steps.release.outputs.tag }}
74+ GIT_COMMITTER_NAME : github-actions
75+ GIT_COMMITTER_EMAIL :
[email protected] 7476 run : |
7577 MINOR_VERSION_TAG="$(printf '%s\n' "$FULL_VERSION_TAG" | cut -d. -f1,2)"
7678 git tag --force --annotate "$MINOR_VERSION_TAG" "${FULL_VERSION_TAG}^{}" -m "$MINOR_VERSION_TAG"
8082 if : steps.release.outputs.released == 'true' && steps.release.outputs.is_prerelease == 'false'
8183 env :
8284 FULL_VERSION_TAG : ${{ steps.release.outputs.tag }}
85+ GIT_COMMITTER_NAME : github-actions
86+ GIT_COMMITTER_EMAIL :
[email protected] 8387 run : |
8488 MAJOR_VERSION_TAG="$(printf '%s\n' "$FULL_VERSION_TAG" | cut -d. -f1)"
8589 git tag --force --annotate "$MAJOR_VERSION_TAG" "${FULL_VERSION_TAG}^{}" -m "$MAJOR_VERSION_TAG"
You can’t perform that action at this time.
0 commit comments