Skip to content

cut-new-release-2.2.5 (#76) #39

cut-new-release-2.2.5 (#76)

cut-new-release-2.2.5 (#76) #39

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
Deploy:
runs-on: ubuntu-latest
environment: Deployment
timeout-minutes: 10
steps:
- uses: actions/[email protected]
- uses: ./.github/actions/setup
with:
cache-key: "deploy"
- name: Build JAR
shell: bash
run: >-
set -x;
clojure -X:jar :version "\"$(cat VERSION.txt)\""
- name: Upload JAR to Clojars
run: clojure -X:deploy :artifact '"target/saml20-clj.jar"'
env:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}