Skip to content

all the things

all the things #1

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.11.1.1189
- name: Run tests
run: clojure -X:test
- name: Build uberjar
run: clojure -T:build uber
- name: Release
uses: softprops/action-gh-release@v1
with:
files: target/*.jar
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: kongeor/evolduo-app
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tag_names: true
platforms: linux/amd64,linux/arm64