diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..b9c4069 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,23 @@ +# Publish to clojars marketplace workflow +name: release + +on: + push: + branches: + - master + tags: + - "*" + +jobs: + clojars: + runs-on: ubuntu-latest + + steps: + # This step checks out a copy of your repository. + - uses: actions/checkout@v2 + + - uses: jlesquembre/clojars-publish-action@0.3 + env: + CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }} + CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }} +