Skip to content

Commit

Permalink
added clojars workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrik authored Nov 18, 2021
1 parent 8c595b0 commit cc41f2a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
env:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}

0 comments on commit cc41f2a

Please sign in to comment.