Skip to content

Merge pull request #26 from kepler16/feat/kmono-workspace #152

Merge pull request #26 from kepler16/feat/kmono-workspace

Merge pull request #26 from kepler16/feat/kmono-workspace #152

Workflow file for this run

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
- uses: s4u/[email protected]
with:
githubServer: false
servers: |
[{"id": "github-kepler",
"username": "${{ secrets.ORG_GITHUB_ACTOR }}",
"password": "${{ secrets.ORG_GITHUB_TOKEN }}"},
{"id": "github-kepler-kmono",
"username": "${{ github.actor }}",
"password": "${{ secrets.GITHUB_TOKEN }}"}]
- name: Test
run: |
just test
- 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' }}