Deploy clj-otel modules #34
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: Deploy clj-otel modules | |
on: | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Set up git user | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
- name: Install Clojure CLI tools | |
uses: DeLaGuardo/setup-clojure@12.3 | |
with: | |
cli: '1.11.1.1435' | |
- name: Cache deps | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.clojure | |
~/.cpcache | |
key: ${{ runner.os }}-${{ hashFiles('deps.edn') }}-${{ hashFiles('**/deps.edn') }}-deploy | |
restore-keys: | | |
${{ runner.os }}-${{ hashFiles('deps.edn') }}-${{ hashFiles('**/deps.edn') }}- | |
${{ runner.os }}-${{ hashFiles('deps.edn') }}- | |
${{ runner.os }}- | |
- name: Deploy release (and tag release if not *-SNAPSHOT version) | |
run: clojure -J-Dclojure.main.report=stderr -T:build deploy | |
env: | |
CLOJARS_PASSWORD: ${{ secrets.DEPLOY_TOKEN }} | |
CLOJARS_USERNAME: ${{ secrets.DEPLOY_USERNAME }} |