chore: remove statsd and use prometheus (#50) #13
Workflow file for this run
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
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 | |