Merge branch 'master' into improve_build
This commit is contained in:
commit
4decc91db3
4 changed files with 20 additions and 22 deletions
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
@ -92,11 +92,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
mkdir -p target/npm-build
|
mkdir -p target/npm-build/mastodon_bot
|
||||||
cp mastodon-bot.js target/npm-build/
|
cp mastodon-bot.js target/npm-build/mastodon_bot/
|
||||||
cp target/mastodon-bot.js.sha256 target/npm-build/
|
cp target/mastodon-bot.js.sha256 target/npm-build/mastodon_bot/
|
||||||
cp target/mastodon-bot.js.sha512 target/npm-build/
|
cp target/mastodon-bot.js.sha512 target/npm-build/mastodon_bot/
|
||||||
cp package.json target/npm-build/
|
cp package.json target/npm-build/mastodon_bot/
|
||||||
cp README.md target/npm-build/
|
cp README.md target/npm-build/mastodon_bot/
|
||||||
tar -cz -C target/npm-build -f target/npm-build.tgz .
|
npm publish ./target/npm-build --access public --dry-run
|
||||||
npm publish ./target/npm-build.tgz --access public --dry-run
|
|
||||||
|
|
20
RELEASING.md
20
RELEASING.md
|
@ -8,12 +8,11 @@ shadow-cljs release app
|
||||||
chmod a+x mastodon-bot.js
|
chmod a+x mastodon-bot.js
|
||||||
rm -rf target/npm-build
|
rm -rf target/npm-build
|
||||||
mkdir target/npm-build
|
mkdir target/npm-build
|
||||||
cp mastodon-bot.js target/npm-build/
|
cp mastodon-bot.js target/npm-build
|
||||||
cp package.json target/npm-build/
|
cp package.json target/npm-build
|
||||||
cp README.md target/npm-build/
|
cp README.md target/npm-build
|
||||||
tar -cz -C target/npm-build -f target/npm-build.tgz .
|
|
||||||
|
|
||||||
npm publish ./target/npm-build.tgz --access public
|
npm publish ./target/npm-build --access public
|
||||||
```
|
```
|
||||||
|
|
||||||
## prod release (should be done from master)
|
## prod release (should be done from master)
|
||||||
|
@ -32,13 +31,12 @@ shadow-cljs release app
|
||||||
shadow-cljs release app
|
shadow-cljs release app
|
||||||
chmod a+x mastodon-bot.js
|
chmod a+x mastodon-bot.js
|
||||||
rm -rf target/npm-build
|
rm -rf target/npm-build
|
||||||
mkdir -p target/npm-build
|
mkdir target/npm-build
|
||||||
cp mastodon-bot.js target/npm-build/
|
cp mastodon-bot.js target/npm-build
|
||||||
cp package.json target/npm-build/
|
cp package.json target/npm-build
|
||||||
cp README.md target/npm-build/
|
cp README.md target/npm-build
|
||||||
tar -cz -C target/npm-build -f target/npm-build.tgz .
|
|
||||||
|
|
||||||
npm publish ./target/npm-build.tgz --access public
|
npm publish ./target/npm-build --access public
|
||||||
|
|
||||||
# Bump version
|
# Bump version
|
||||||
vi shadow-cljs.edn
|
vi shadow-cljs.edn
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "mastodon-bot",
|
"name": "mastodon-bot",
|
||||||
"description": "Bot to publish twitter, tumblr or rss posts to an mastodon account.",
|
"description": "Bot to publish twitter, tumblr or rss posts to an mastodon account.",
|
||||||
"author": "Dmitri Sotnikov",
|
"author": "Dmitri Sotnikov",
|
||||||
"version": "1.0.1",
|
"version": "1.0.4",
|
||||||
"homepage": "https://github.com/yogthos/mastodon-bot",
|
"homepage": "https://github.com/yogthos/mastodon-bot",
|
||||||
"repository": "https://github.com/yogthos/mastodon-bot",
|
"repository": "https://github.com/yogthos/mastodon-bot",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
@ -54,8 +54,9 @@
|
||||||
(defn-spec nitter-url map?
|
(defn-spec nitter-url map?
|
||||||
[source twitter-source?
|
[source twitter-source?
|
||||||
parsed-tweet map?]
|
parsed-tweet map?]
|
||||||
(when (:nitter-urls? source)
|
(if (:nitter-urls? source)
|
||||||
(update parsed-tweet :text #(string/replace % #"https://twitter.com" "https://nitter.net"))))
|
(update parsed-tweet :text #(string/replace % #"https://twitter.com" "https://nitter.net"))
|
||||||
|
parsed-tweet))
|
||||||
|
|
||||||
(defn-spec user-timeline any?
|
(defn-spec user-timeline any?
|
||||||
[twitter-auth twitter-auth?
|
[twitter-auth twitter-auth?
|
||||||
|
|
Reference in a new issue