Skip to content

Update version and add Docker blurb in README #13

Update version and add Docker blurb in README

Update version and add Docker blurb in README #13

Workflow file for this run

name: Clojars Deployment
on:
push:
tags:
- 'v*.*.*' # Enforce Semantic Versioning
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup CD Environment
uses: yetanalytics/actions/setup-env@v0.0.4
- name: Extract version
id: version
run: echo version=${GITHUB_REF#refs\/tags\/v} >> $GITHUB_OUTPUT
- name: Build and deploy to Clojars
uses: yetanalytics/actions/deploy-clojars@v0.0.4
with:
artifact-id: 'project-persephone'
version: ${{ steps.version.outputs.version }}
clojars-username: ${{ secrets.CLOJARS_USERNAME }}
clojars-deploy-token: ${{ secrets.CLOJARS_DEPLOY_TOKEN }}