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/release.sh

13 lines
555 B
Bash
Raw Normal View History

2020-12-29 22:10:44 +00:00
#!/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