File tree Expand file tree Collapse file tree 6 files changed +13
-19
lines changed Expand file tree Collapse file tree 6 files changed +13
-19
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ jobs:
10
10
runs-on : ${{ matrix.os }}
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
- name : Prepare java
15
15
uses : actions/setup-java@v3
16
16
with :
17
17
distribution : ' corretto'
18
18
java-version : ' 19'
19
19
- name : Install clojure tools
20
- uses : DeLaGuardo/setup-clojure@11.0
20
+ uses : DeLaGuardo/setup-clojure@12.1
21
21
with :
22
22
cli : latest
23
23
- name : Cache clojure dependencies
Original file line number Diff line number Diff line change 2
2
(:require [clojure.tools.build.api :as b]))
3
3
4
4
(def lib 'org.clojars.rutledgepaulv /piped )
5
- (def version " 0.1.8 " )
5
+ (def version " 0.1.9 " )
6
6
(def class-dir " target/classes" )
7
7
(def basis (b/create-basis {:project " deps.edn" }))
8
8
(def jar-file (format " target/piped.jar" (name lib) version))
19
19
:version version
20
20
:basis basis
21
21
:src-dirs [" src" ]
22
- :src-pom " builds/pom-template.xml"
22
+ :pom-data [[:licenses
23
+ [:license
24
+ [:name " MIT" ]
25
+ [:url " https://opensource.org/license/mit/" ]]]]
23
26
:scm {:tag (str " v" version)
24
27
:connection (
str " scm:git:[email protected] :rutledgepaulv/" (
name lib)
" .git" )
25
28
:url (str " https://github.com/rutledgepaulv/" (name lib))}})
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
:aliases
11
11
{:build {:extra-deps {io.github.clojure/tools.build
12
12
{:git/url " https://github.com/clojure/tools.build.git"
13
- :sha " 32d497f4f1ad07cb1dfa0855ada9e9cf17abff48 " }}
13
+ :sha " cc1e33d003e2e9507e8e6e899611f56172dacc0a " }}
14
14
:extra-paths [" builds" ]
15
15
:ns-default build}
16
16
17
17
:test {:extra-paths [" test" ]
18
- :extra-deps {org.testcontainers/testcontainers {:mvn/version " 1.19.0 " }
18
+ :extra-deps {org.testcontainers/testcontainers {:mvn/version " 1.19.1 " }
19
19
org.slf4j/slf4j-simple {:mvn/version " 2.0.9" }}}
20
20
21
21
:run-tests {:extra-deps {io.github.cognitect-labs/test-runner
Original file line number Diff line number Diff line change 1
- [ ![ Build Status ] ( https://travis-ci .com/rutledgepaulv/piped.svg?branch=master )] ( https://travis-ci.com/rutledgepaulv/piped )
1
+ ![ Build] ( https://github .com/rutledgepaulv/piped/actions/workflows/check/badge .svg?branch=master )
2
2
[ ![ Clojars Project] ( https://img.shields.io/clojars/v/org.clojars.rutledgepaulv/piped.svg )] ( https://clojars.org/org.clojars.rutledgepaulv/piped )
3
3
4
4
<img src =" ./docs/ready-hans.jpg " title =" harmonic labyrinth " width =" 300 " height =" 300 " align =" left " padding =" 5px " />
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
+ set -e
2
3
3
4
clj -X:build clean
4
5
clj -X:build jar
@@ -16,5 +17,5 @@ op run -- mvn deploy:deploy-file \
16
17
-DrepositoryId=" clojars" \
17
18
-Durl=" https://repo.clojars.org"
18
19
19
- # git tag "v$version"
20
- # git push origin "refs/tags/v$version"
20
+ git tag " v$version "
21
+ git push origin " refs/tags/v$version "
You can’t perform that action at this time.
0 commit comments