File tree Expand file tree Collapse file tree 4 files changed +36
-6
lines changed Expand file tree Collapse file tree 4 files changed +36
-6
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 @@ -52,12 +52,8 @@ It is also possible to create custom tags and handlers. For more information see
52
52
# Developer Information
53
53
54
54
* [ GitHub project] ( https://github.com/clojure/data.fressian )
55
-
56
- * [ Bug Tracker] ( http://dev.clojure.org/jira/browse/DFRS )
57
-
58
- * [ Continuous Integration] ( http://build.clojure.org/job/data.fressian/ )
59
-
60
- * [ Compatibility Test Matrix] ( http://build.clojure.org/job/data.fressian-test-matrix/ )
55
+ * [ Bug Tracker] ( https://clojure.atlassian.net/browse/DFRS )
56
+ * [ Continuous Integration] ( https://github.com/clojure/data.fressian/actions/workflows/test.yml )
61
57
62
58
63
59
# Copyright and License
You can’t perform that action at this time.
0 commit comments