mirror of
https://github.com/SomboChea/ui
synced 2024-11-01 04:04:26 +07:00
4a459df463
* chore: fixes snapshots test * chore: adds github actions, issue and feat templates * chore: fixes eslint * chore: remvoes circle ci and adds publish action * chore: adds github-release automation using actions
8 lines
269 B
Bash
8 lines
269 B
Bash
# Get the last tag from GitHub
|
|
lastTag=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|
|
|
changelog=$(git show $GITHUB_SHA --unified=0 CHANGELOG.md | tail +12 | sed -e 's/^\+//')
|
|
|
|
echo "$changelog"
|
|
|
|
echo "$changelog" | node scripts/trigger-release.js $lastTag |