Merge pull request #25 from pmonks/dev #9
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 | |
on: | |
push: | |
branches: | |
- release | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: clojars | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Make sure we get the full history, or else the version number gets screwed up | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- uses: DeLaGuardo/setup-clojure@12.5 | |
with: | |
cli: latest | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.clojure | |
~/.cpcache | |
key: ${{ runner.os }}-${{ hashFiles('**/deps.edn') }} | |
- name: Build JAR and deploy to Clojars | |
env: | |
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }} | |
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }} | |
run: clojure -Srepro -J-Dclojure.main.report=stderr -T:build deploy |