-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7ea9ed
commit e6ffcbf
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Deploy package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install dependencies | ||
run: lein deps | ||
- name: Import GPG Key | ||
uses: crazy-max/ghaction-import-gpg@v1 | ||
env: | ||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | ||
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | ||
- name: Deploy to clojars | ||
run: CLOJARS_USERNAME=${{ secrets.CLOJARS_USERNAME }} CLOJARS_PASSWORD=${{ secrets.CLOJARS_PASSWORD }} lein deploy clojars |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
(defproject org.clojars.majorcluster/lein-template.diplomat-http-w-datomic-service "0.2.2" | ||
(defproject org.clojars.majorcluster/lein-template.diplomat-http-w-datomic-service "0.2.3" | ||
:description "Diplomat architecture-pedestal styled template with datomic db for leiningen generation" | ||
:url "https://github.com/majorcluster/diplomat-http-w-datomic-service-template" | ||
:license {:name "MIT License" | ||
:url "https://opensource.org/licenses/MIT"} | ||
:deploy-repositories [["clojars" {:url "https://repo.clojars.org" | ||
:username :env/clojars_username | ||
:password :env/clojars_password}]] | ||
:eval-in-leiningen true) |