no longer used

This commit is contained in:
jem 2021-03-12 14:24:38 +01:00
parent 5546bf98b3
commit 42e29a6c50
2 changed files with 0 additions and 54 deletions

View file

@ -1,42 +0,0 @@
# 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
```

View file

@ -1,12 +0,0 @@
#!/bin/bash
npx shadow-cljs release app
shasum -a 512 mastodon-bot.js > mastodon-bot.js.sha256
shasum -a 512 mastodon-bot.js > mastodon-bot.js.sha512
rm -rf target/npm-build/mastodon-bot
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/mastodon-bot --access public