Add default justfile command #80
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: Publish kmono 👘 | |
on: [push] | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cache clojure dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.deps.clj | |
key: cljdeps-${{ hashFiles('deps.edn') }} | |
restore-keys: cljdeps- | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: extractions/setup-just@v1 | |
- uses: DeLaGuardo/[email protected] | |
with: | |
cli: latest | |
# - name: Test | |
# run: | | |
# just test ":snapshot?" ${{ github.ref_name != 'master' }} | |
- name: Build | |
run: | | |
just build ":snapshot?" ${{ github.ref_name != 'master' }} | |
- name: Release | |
env: | |
CLOJARS_USERNAME: infrastructure-kepler16-com | |
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }} | |
run: | | |
just release \ | |
":snapshot?" ${{ github.ref_name != 'master' }} \ | |
":create-tags?" ${{ github.ref_name == 'master' }} | |