Skip to content

Commit

Permalink
add workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed May 26, 2023
1 parent 20dd89f commit e004577
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
@@ -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
8 changes: 8 additions & 0 deletions .github/workflows/snapshot.yml
@@ -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
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,7 @@
name: Test

on: [push]

jobs:
call-test:
uses: clojure/build.ci/.github/workflows/test.yml@master
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -78,8 +78,7 @@ Developer Information

* [GitHub project](https://github.com/clojure/tools.trace)
* [Bug Tracker](https://clojure.atlassian.net/browse/TTRACE)
* [Continuous Integration](https://build.clojure.org/job/tools.trace/)
* [TestMatrix](https://build.clojure.org/job/tools.trace-test-matrix/)
* [Continuous Integration](https://github.com/clojure/tools.trace/actions/workflows/test.yml)



Expand Down

0 comments on commit e004577

Please sign in to comment.