Skip to content

Commit

Permalink
Adds gpg
Browse files Browse the repository at this point in the history
  • Loading branch information
jbropho committed Feb 27, 2024
1 parent 46a9fb2 commit 05636c5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,12 @@ jobs:
env:
CLOJARS_USERNAME: ${{ secrets.CLOJARS_USERNAME }}
CLOJARS_PASSWORD: ${{ secrets.CLOJARS_PASSWORD }}
run: lein do jar, pom, deploy clojars
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: |
apt-get update
apt-get install gpg
echo $GPG_PRIVATE_KEY |base64 --decode |gpg --yes --batch --import
export LEIN_GPG=/__w/jackdaw/jackdaw/.circleci/bin/gpg
export REAL_GPG=$(which gpg)
lein do jar, pom, deploy clojars

0 comments on commit 05636c5

Please sign in to comment.