version bump
This commit is contained in:
parent
58493f3869
commit
31717823c4
4 changed files with 11 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -8,7 +8,7 @@ config*.edn
|
||||||
|
|
||||||
# lein ignores
|
# lein ignores
|
||||||
/target
|
/target
|
||||||
pom.xml
|
pom.*
|
||||||
|
|
||||||
# pybuilder ignores
|
# pybuilder ignores
|
||||||
.pybuilder
|
.pybuilder
|
||||||
|
@ -17,3 +17,4 @@ __pycache__
|
||||||
# ide ignores
|
# ide ignores
|
||||||
.calva/
|
.calva/
|
||||||
|
|
||||||
|
pom.xml.asc
|
||||||
|
|
|
@ -110,7 +110,7 @@ upload-cljs-release:
|
||||||
- cp package.json target/npm-build/
|
- cp package.json target/npm-build/
|
||||||
- npm publish ./target/npm-build --access public
|
- npm publish ./target/npm-build --access public
|
||||||
|
|
||||||
build:
|
image-test-publish:
|
||||||
image: domaindrivenarchitecture/devops-build:latest
|
image: domaindrivenarchitecture/devops-build:latest
|
||||||
stage: image
|
stage: image
|
||||||
rules:
|
rules:
|
||||||
|
|
|
@ -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.10.9",
|
"version": "1.10.10-SNAPSHOT",
|
||||||
"homepage": "https://github.com/yogthos/mastodon-bot",
|
"homepage": "https://github.com/yogthos/mastodon-bot",
|
||||||
"repository": "https://www.npmjs.com/package/mastodon-bot",
|
"repository": "https://www.npmjs.com/package/mastodon-bot",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
@ -13,4 +13,10 @@
|
||||||
["releases" :clojars]]
|
["releases" :clojars]]
|
||||||
:profiles {:test {:test-paths ["src/test/cljc"]
|
:profiles {:test {:test-paths ["src/test/cljc"]
|
||||||
:resource-paths ["src/test/resources"]
|
:resource-paths ["src/test/resources"]
|
||||||
:dependencies []}})
|
:dependencies []}}
|
||||||
|
:release-tasks [["vcs" "assert-committed"]
|
||||||
|
["change" "version" "leiningen.release/bump-version" "release"]
|
||||||
|
["vcs" "commit"]
|
||||||
|
["vcs" "tag"]
|
||||||
|
["deploy"]
|
||||||
|
["change" "version" "leiningen.release/bump-version"]])
|
||||||
|
|
Reference in a new issue