This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-bot/RELEASING.md
2020-11-06 13:01:04 -05:00

42 lines
841 B
Markdown

# Releasing
## dev release
```
# run the tests
shadow-cljs compile test
# release the app
shadow-cljs release app
chmod a+x mastodon-bot.js
# publish to npm
mkdir -p target/npm-build/mastodon_bot
cp mastodon-bot.js target/npm-build/mastodon_bot/
cp target/mastodon-bot.js.sha256 target/npm-build/mastodon_bot/
cp target/mastodon-bot.js.sha512 target/npm-build/mastodon_bot/
cp package.json target/npm-build/mastodon_bot/
cp README.md target/npm-build/mastodon_bot/
npm publish ./target/npm-build --access public
```
## stable release (should be done from master)
```
shadow-cljs compile test
#adjust [version]
vi package.json
git commit -am "releasing"
git commit -am [version]
git push --follow-tags
# Bump [version]
vi package.json
git commit -am "version bump" && git push
# trigger deploy
git tag [version]
git push --tags
```