Skip to content

Commit

Permalink
Merge pull request #50 from disneystreaming/dfrancoeur/dss-update
Browse files Browse the repository at this point in the history
misc updates to fix gpg signing
  • Loading branch information
daddykotex committed Nov 27, 2023
2 parents 98094a8 + 1f5fada commit 0c25069
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .mill-version
@@ -1 +1 @@
0.10.8
0.11.6
9 changes: 6 additions & 3 deletions ci/publish.sh
Expand Up @@ -2,19 +2,22 @@

set -eu

echo $PGP_SECRET | base64 --decode > gpg_key
gpg --version

echo "$PGP_SECRET" | base64 --decode > gpg_key

gpg --import --no-tty --batch --yes gpg_key
gpg --list-keys

rm gpg_key

mill lsp.publish \
--sonatypeCreds $SONATYPE_USERNAME:$SONATYPE_PASSWORD \
--sonatypeCreds "$SONATYPE_USERNAME:$SONATYPE_PASSWORD" \
--signed true \
--release true \
--readTimeout 600000 \
--awaitTimeout 600000 \
--gpgArgs --passphrase=$PGP_PASSPHRASE \
--gpgArgs --passphrase="$PGP_PASSPHRASE" \
--gpgArgs --no-tty \
--gpgArgs --pinentry-mode \
--gpgArgs loopback \
Expand Down

0 comments on commit 0c25069

Please sign in to comment.