-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7246672
commit 3292668
Showing
4 changed files
with
36 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Release on demand | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
releaseVersion: | ||
description: "Version to release" | ||
required: true | ||
snapshotVersion: | ||
description: "Snapshot version after release" | ||
required: true | ||
|
||
jobs: | ||
call-release: | ||
uses: clojure/build.ci/.github/workflows/release.yml@master | ||
with: | ||
releaseVersion: ${{ github.event.inputs.releaseVersion }} | ||
snapshotVersion: ${{ github.event.inputs.snapshotVersion }} | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name: Snapshot on demand | ||
|
||
on: [workflow_dispatch] | ||
|
||
jobs: | ||
call-snapshot: | ||
uses: clojure/build.ci/.github/workflows/snapshot.yml@master | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name: Test | ||
|
||
on: [push] | ||
|
||
jobs: | ||
call-test: | ||
uses: clojure/build.ci/.github/workflows/test.yml@master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters