mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
4efbad1ef7
* chore: bumps verdaccio-htpasswd@2.0.0 * chore: removes circle ci and publish using github-actions * chore: adds bash doctype * chore: adds build and test workflow * chore: fixes coverage error * chore: adds e2e tests * chore: adds headless arg * chore: sets puppeteer in docker env * chore: runs tets through bash * chore: minor fixes
11 lines
283 B
Bash
11 lines
283 B
Bash
#!/bin/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
|