Skip to content

Commit 0d92630

Browse files
committed
add workflows
1 parent b6a318a commit 0d92630

File tree

4 files changed

+35
-1
lines changed

4 files changed

+35
-1
lines changed

.github/workflows/release.yml

+19
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

+8
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

+7
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,6 @@ YourKit's leading software products:
112112

113113
### License
114114

115-
Copyright © 2014-2020 Rich Hickey, Reid Draper and contributors
115+
Copyright © 2014-2023 Rich Hickey, Reid Draper and contributors
116116

117117
Distributed under the Eclipse Public License, the same as Clojure.

0 commit comments

Comments
 (0)