File tree Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Expand file tree Collapse file tree 4 files changed +36
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Release on demand
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ releaseVersion :
7
+ description : " Version to release"
8
+ required : true
9
+ snapshotVersion :
10
+ description : " Snapshot version after release"
11
+ required : true
12
+
13
+ jobs :
14
+ call-release :
15
+ uses : clojure/build.ci/.github/workflows/release.yml@master
16
+ with :
17
+ releaseVersion : ${{ github.event.inputs.releaseVersion }}
18
+ snapshotVersion : ${{ github.event.inputs.snapshotVersion }}
19
+ secrets : inherit
Original file line number Diff line number Diff line change
1
+ name : Snapshot on demand
2
+
3
+ on : [workflow_dispatch]
4
+
5
+ jobs :
6
+ call-snapshot :
7
+ uses : clojure/build.ci/.github/workflows/snapshot.yml@master
8
+ secrets : inherit
Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ call-test :
7
+ uses : clojure/build.ci/.github/workflows/test.yml@master
Original file line number Diff line number Diff line change @@ -566,15 +566,14 @@ Developer Information
566
566
* [ GitHub project] ( https://github.com/clojure/tools.namespace )
567
567
* [ How to contribute] ( https://clojure.org/community/contributing )
568
568
* [ Bug Tracker] ( https://clojure.atlassian.net/browse/TNS )
569
- * [ Continuous Integration] ( https://build.clojure.org/job/tools.namespace/ )
570
- * [ Compatibility Test Matrix] ( https://build.clojure.org/job/tools.namespace-test-matrix/ )
569
+ * [ Continuous Integration] ( https://github.com/clojure/tools.namespace/actions/workflows/test.yml )
571
570
572
571
573
572
574
573
Copyright and License
575
574
----------------------------------------
576
575
577
- Copyright © 2012-2021 Rich Hickey, Stuart Sierra, and contributors
576
+ Copyright © 2012-2023 Rich Hickey, Stuart Sierra, and contributors
578
577
579
578
All rights reserved. The use and
580
579
distribution terms for this software are covered by the
You can’t perform that action at this time.
0 commit comments