Remove clojars
This commit is contained in:
parent
224aeeebbe
commit
a7c6c306e7
2 changed files with 3 additions and 26 deletions
23
.github/workflows/release.yml
vendored
23
.github/workflows/release.yml
vendored
|
|
@ -8,7 +8,7 @@ permissions:
|
|||
contents: read
|
||||
|
||||
jobs:
|
||||
clojars:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
@ -21,26 +21,7 @@ jobs:
|
|||
- name: Set version
|
||||
run: |
|
||||
lein change version set '"${{github.event.release.tag_name}}"'
|
||||
- name: Release
|
||||
run: lein with-profile release deploy clojars
|
||||
env:
|
||||
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
|
||||
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}
|
||||
|
||||
maven:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Setup Build
|
||||
uses: ./.github/actions/setup-build
|
||||
- name: Set version
|
||||
run: |
|
||||
lein change version set '"${{github.event.release.tag_name}}"'
|
||||
- name: Release
|
||||
- name: Release ${{github.event.release.tag_name}}
|
||||
run: lein with-profile release deploy maven
|
||||
env:
|
||||
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
|
||||
|
|
|
|||
|
|
@ -26,11 +26,7 @@
|
|||
[com.fzakaria/slf4j-timbre "0.3.21"]
|
||||
[nrepl "1.0.0"]]
|
||||
:source-paths ["dev-src"]}
|
||||
:release {:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
|
||||
:username :env/clojars_username
|
||||
:password :env/clojars_password
|
||||
:sign-releases false}]
|
||||
["maven" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
|
||||
:release {:deploy-repositories [["maven" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
|
||||
:username :env/ossrh_username
|
||||
:password :env/ossrh_password
|
||||
:sign-releases false}]]}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue