Skip to content

Commit

Permalink
Merge pull request #191 from VictoriaMetrics/release-pipeline-fix
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
AndrewChubatiuk authored Dec 20, 2024
2 parents 93dc903 + 3b451e6 commit ad3174a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,8 @@ jobs:
echo "ERROR: Not found 'tip' section in CHANGELOG. Please add relavant entries and recreate git tag"
exit 1
fi
export NOTES="$(sed -n '/## tip/,/## /p' CHANGELOG.md | sed -e '$d' -e '1d')"
sed -i 's/## tip/&\n\n## ${{ env.PKG_TAG }}/' CHANGELOG.md
echo $NOTES > NOTES.md
sed -n '/## tip/,/## /p' CHANGELOG.md | sed -e '$d' -e '1d' > NOTES.md
sed -i 's/## tip/&\n\n## '${PKG_TAG}'/' CHANGELOG.md
make vl-plugin-check
git tag ${TAG}
git push origin ${TAG}
Expand Down

0 comments on commit ad3174a

Please sign in to comment.