forked from raystack/stencil
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: publish clojure client to artifactory (#33)
* feat: publish clojure client to artifactory * feat: pipeline fix * feat: pipeline fix * feat: bump version * feat: change variable names * feat: version bump to 0.2.0 * feat: variable name change --------- Co-authored-by: gagan.dhand <[email protected]>
- Loading branch information
1 parent
c03ca8f
commit 5be3fe2
Showing
2 changed files
with
38 additions
and
2 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,29 @@ | ||
name: Release Stencil Clojure Client | ||
on: | ||
push: | ||
tags: | ||
- "v*.*.*" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
publish-clojure-client: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 8 | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: adopt | ||
java-version: 8 | ||
- name: Install clojure tools | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
lein: 2.9.8 | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Publish Clojure Client | ||
env: | ||
CLOJARE_ARTIFACTORY_USERNAME: ${{ secrets.CLOJARE_ARTIFACTORY_USERNAME }} | ||
CLOJARE_ARTIFACTORY_PASSWORD: ${{ secrets.CLOJARE_ARTIFACTORY_PASSWORD }} | ||
working-directory: clients/clojure | ||
run: lein deploy release | ||
|
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