Skip to content

Commit

Permalink
1.2beta1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrica committed Feb 17, 2025
1 parent 5c31684 commit 39c5bcc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cli: 1.12.0.1495

- name: create pom
run: clojure -Spom
run: clojure -T:build generate-pom

- uses: jlesquembre/[email protected]
env:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.2beta1.3
- fixed release build

1.2beta1.2
- fixed build

Expand Down
11 changes: 10 additions & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
(def lib 'org.scicloj/metamorph.ml)
; alternatively, use MAJOR.MINOR.COMMITS:
;; (def version (format "6.2.%s" (b/git-count-revs nil)))
(def version "1.2beta1.2")
(def version "1.2beta1.3")
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))
Expand Down Expand Up @@ -55,6 +55,15 @@
(b/jar {:class-dir class-dir
:jar-file jar-file}))

(defn generate-pom [_]
(b/write-pom {:target "."
:lib lib
:version version
:basis basis
:pom-data (pom-template version)
:src-dirs ["src"]})
)

(defn ci "Run the CI pipeline of tests (and build the JAR)." [opts]
(-> opts
(assoc :lib lib :version version
Expand Down

0 comments on commit 39c5bcc

Please sign in to comment.