Skip to content

Update date for release 0.3.3 in changelog (#91) #9

Update date for release 0.3.3 in changelog (#91)

Update date for release 0.3.3 in changelog (#91) #9

Workflow file for this run

name: Release
on:
push:
tags:
- "*"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: docker-compose run --rm check bash -c "make deps && make lint-init > /dev/null 2>&1 || true && make lint"
- name: Fmt
run: docker-compose run --rm check make fmt-check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: docker-compose run --rm test bash -c "make deps && make test-ci"
# deploy:
# runs-on: ubuntu-latest
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# steps:
# - uses: actions/checkout@v4
#
# - name: Build jar-file and deploy to Clojars
# run: docker-compose run --rm build bash -c "make deploy-ci"
# env:
# CLOJARS_PASSWORD: ${{secrets.CLOJARS_PASSWORD}}
# CLOJARS_USERNAME: ${{secrets.CLOJARS_USERNAME}}