Skip to content

Commit fcb8ecb

Browse files
committed
add workflows
1 parent f096376 commit fcb8ecb

3 files changed

Lines changed: 28 additions & 1 deletion

File tree

.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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ io.github.clojure/tools.build {:mvn/version "0.9.4"}
3636

3737
# Copyright and License
3838

39-
Copyright © 2022 Rich Hickey, Alex Miller, and contributors
39+
Copyright © 2023 Rich Hickey, Alex Miller, and contributors
4040

4141
All rights reserved. The use and
4242
distribution terms for this software are covered by the

0 commit comments

Comments
 (0)