Version 0.1.6
This commit is contained in:
parent
16d5090930
commit
139f23f824
4 changed files with 9 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -23,3 +23,4 @@ public/js/
|
||||||
|
|
||||||
myauth.edn
|
myauth.edn
|
||||||
myconfig.edn
|
myconfig.edn
|
||||||
|
origconfig.edn
|
||||||
|
|
|
@ -92,11 +92,11 @@ sast:
|
||||||
include:
|
include:
|
||||||
- template: Security/SAST.gitlab-ci.yml
|
- template: Security/SAST.gitlab-ci.yml
|
||||||
|
|
||||||
upload-clj-prerelease:
|
upload-clj-release:
|
||||||
<<: *clj
|
<<: *clj
|
||||||
stage: upload
|
stage: upload
|
||||||
rules:
|
rules:
|
||||||
- if: '$CI_COMMIT_BRANCH == "master" && $CI_COMMIT_TAG == null'
|
- if: '$CI_COMMIT_TAG != null'
|
||||||
script:
|
script:
|
||||||
- lein deploy clojars
|
- lein deploy clojars
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "c4k-mastodon-bot",
|
"name": "c4k-mastodon-bot",
|
||||||
"description": "Generate c4k yaml for a mastodon-bot deployment.",
|
"description": "Generate c4k yaml for a mastodon-bot deployment.",
|
||||||
"author": "meissa GmbH",
|
"author": "meissa GmbH",
|
||||||
"version": "0.1.5-SNAPSHOT",
|
"version": "0.1.6",
|
||||||
"homepage": "https://gitlab.com/domaindrivenarchitecture/c4k-mastodon-bot#readme",
|
"homepage": "https://gitlab.com/domaindrivenarchitecture/c4k-mastodon-bot#readme",
|
||||||
"repository": "https://www.npmjs.com/package/c4k-mastodon-bot",
|
"repository": "https://www.npmjs.com/package/c4k-mastodon-bot",
|
||||||
"license": "APACHE2",
|
"license": "APACHE2",
|
||||||
|
|
10
project.clj
10
project.clj
|
@ -1,4 +1,4 @@
|
||||||
(defproject dda/c4k-mastodon-bot "0.1.6-SNAPSHOT"
|
(defproject dda/c4k-mastodon-bot "0.1.6"
|
||||||
:description "mastodon-bot c4k-installation package"
|
:description "mastodon-bot c4k-installation package"
|
||||||
:url "https://www.domaindrivenarchitecture.org"
|
:url "https://www.domaindrivenarchitecture.org"
|
||||||
:license {:name "Apache License, Version 2.0"
|
:license {:name "Apache License, Version 2.0"
|
||||||
|
@ -16,8 +16,8 @@
|
||||||
:resource-paths ["src/main/resources"]
|
:resource-paths ["src/main/resources"]
|
||||||
:repositories [["snapshots" :clojars]
|
:repositories [["snapshots" :clojars]
|
||||||
["releases" :clojars]]
|
["releases" :clojars]]
|
||||||
:deploy-repositories [["snapshots" :clojars]
|
:deploy-repositories [["snapshots" {:sign-releases false :url "https://clojars.org/repo"}]
|
||||||
["releases" :clojars]]
|
["releases" {:sign-releases false :url "https://clojars.org/repo"}]]
|
||||||
: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 [[dda/data-test "0.1.1"]]}
|
:dependencies [[dda/data-test "0.1.1"]]}
|
||||||
|
@ -29,11 +29,11 @@
|
||||||
[ch.qos.logback/logback-classic "1.3.0-alpha4"
|
[ch.qos.logback/logback-classic "1.3.0-alpha4"
|
||||||
:exclusions [com.sun.mail/javax.mail]]
|
:exclusions [com.sun.mail/javax.mail]]
|
||||||
[org.slf4j/jcl-over-slf4j "2.0.0-alpha1"]]}}
|
[org.slf4j/jcl-over-slf4j "2.0.0-alpha1"]]}}
|
||||||
:release-tasks [["vcs" "assert-committed"]
|
:release-tasks [["test"]
|
||||||
|
["vcs" "assert-committed"]
|
||||||
["change" "version" "leiningen.release/bump-version" "release"]
|
["change" "version" "leiningen.release/bump-version" "release"]
|
||||||
["vcs" "commit"]
|
["vcs" "commit"]
|
||||||
["vcs" "tag"]
|
["vcs" "tag"]
|
||||||
["deploy"]
|
|
||||||
["change" "version" "leiningen.release/bump-version"]]
|
["change" "version" "leiningen.release/bump-version"]]
|
||||||
:aliases {"native" ["shell"
|
:aliases {"native" ["shell"
|
||||||
"native-image"
|
"native-image"
|
||||||
|
|
Loading…
Reference in a new issue