2 Commits

Author SHA1 Message Date
jimehbot[bot]
ccc95c2796 chore(main): release 0.0.3 (#3) 2023-05-07 22:49:49 +01:00
08e227b305 fix(release): use full version in tag annotations 2023-05-07 22:39:31 +01:00
3 changed files with 11 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
{
".": "0.0.2"
".": "0.0.3"
}

View File

@@ -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 }}

View File

@@ -1,5 +1,12 @@
# Changelog
## [0.0.3](https://github.com/jimeh/release-please-manifest-action/compare/v0.0.2...v0.0.3) (2023-05-07)
### Bug Fixes
* **release:** use full version in tag annotations ([08e227b](https://github.com/jimeh/release-please-manifest-action/commit/08e227b3057a732f0947407b8657123e5418e77c))
## [0.0.2](https://github.com/jimeh/release-please-manifest-action/compare/v0.0.1...v0.0.2) (2023-05-07)