Skip to content

Commit 56e928b

Browse files
committed
add actions
1 parent 4539aef commit 56e928b

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

.github/workflows/snapshot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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

.github/workflows/test.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
call-test:
7+
uses: clojure/build.ci/.github/workflows/test.yml@master

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,11 @@ Developer information
113113
----
114114

115115
* [Bug Tracker](https://clojure.atlassian.net/browse/LOGIC)
116-
* [Continuous Integration](https://build.clojure.org/job/core.logic/)
117-
* [Compatibility Test Matrix](https://build.clojure.org/job/core.logic-test-matrix/)
116+
* [Continuous Integration](https://github.com/clojure/core.logic/actions/workflows/test.yml)
118117

119118
Copyright and license
120119
----
121120

122-
Copyright © 2010-2020 David Nolen, Rich Hickey & contributors.
121+
Copyright © 2010-2023 David Nolen, Rich Hickey & contributors.
123122

124123
Licensed under the EPL (see the file epl.html).

0 commit comments

Comments
 (0)