Update version and add Docker blurb in README #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |