#/usr/bin/env bash

set -euxo pipefail

mkdir -p /tmp/release
lein do clean, uberjar
VERSION=$(cat resources/DEPS_CLJ_VERSION)
artifact="target/deps.clj-$VERSION-standalone.jar"
cp "$artifact" /tmp/release
bb upload-artifact :file "$artifact"
