mirror of
https://github.com/jimeh/release-please-manifest-action.git
synced 2026-02-19 09:06:42 +00:00
fix(release): use full version in tag annotations
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -26,11 +26,11 @@ jobs:
|
||||
git tag -d "$MINOR_TAG" || true
|
||||
git push origin ":${MAJOR_TAG}" || true
|
||||
git push origin ":${MINOR_TAG}" || true
|
||||
git tag -a "$MAJOR_TAG" -m "Release ${MAJOR_TAG}"
|
||||
git tag -a "$MINOR_TAG" -m "Release ${MINOR_TAG}"
|
||||
git tag -a "$MAJOR_TAG" -m "Release v${{ steps.release.outputs.version }}"
|
||||
git tag -a "$MINOR_TAG" -m "Release v${{ steps.release.outputs.version }}"
|
||||
git push origin "$MAJOR_TAG"
|
||||
git push origin "$MINOR_TAG"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
MAJOR_TAG: v${{ steps.release.outputs.major }}
|
||||
MINOR_TAG: v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
|
||||
|
||||
Reference in New Issue
Block a user