You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
mastodon-bot/RELEASING.md

39 lines
795 B
Markdown

# Releasing
## dev release
```
shadow-cljs compile test
shadow-cljs release app
mkdir target/npm-build
cp mastodon-bot.js target/npm-build/
cp README.md target/npm-build/
tar -c -C target/npm-build -f target/npm-build.tar .
npm publish ./target/npm-build.tar --access public --tag dev0
```
## prod release (should be done from master)
```
shadow-cljs compile test
#adjust version
vi shadow-cljs.edn
git commit -am "releasing"
git tag [version]
git push && git push --tag
shadow-cljs release app
mkdir target/npm-build
cp mastodon-bot.js target/npm-build/
cp README.md target/npm-build/
tar -c -C target/npm-build -f target/npm-build.tar .
npm publish ./target/npm-build.tar --access public --tag [version]
# Bump version
vi shadow-cljs.edn
git commit -am "version bump" && git push
```