generated from finos/software-project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing to use mill's SonatypePublisher to allow better control of t… (
#670) * Changing to use mill's SonatypePublisher to allow better control of timeouts * Forcing jackson versions to help with dependencies * Attempting to fix dependency vulnerability failing the build * Update the json-diff library in order to fix vulnerability * Remove sonatype scan dependency to allow publishing temporarily
- Loading branch information
1 parent
f7adbc9
commit 6c60270
Showing
10 changed files
with
311 additions
and
82 deletions.
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,10 @@ | ||
#!/usr/bin/env sh | ||
|
||
# from https://github.com/coursier/apps/blob/f1d2bf568bf466a98569a85c3f23c5f3a8eb5360/.github/scripts/gpg-setup.sh | ||
|
||
echo $PGP_SECRET | base64 --decode | gpg --import --no-tty --batch --yes | ||
|
||
echo "allow-loopback-pinentry" >>~/.gnupg/gpg-agent.conf | ||
echo "pinentry-mode loopback" >>~/.gnupg/gpg.conf | ||
|
||
gpg-connect-agent reloadagent /bye |
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,8 @@ | ||
#!/usr/bin/env sh | ||
|
||
mkdir -p ~/mybin | ||
touch ~/mybin/gpg | ||
chmod +x ~/mybin/gpg | ||
echo '#!/usr/bin/env sh' > ~/mybin/gpg | ||
echo "$(which gpg) --no-tty --yes \"\$@\"" >> ~/mybin/gpg | ||
echo "$HOME/mybin" >> $GITHUB_PATH |
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
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
5 changes: 5 additions & 0 deletions
5
mill-build/src/mill/local/plugins/ci/release/Discover.scala.scala
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,5 @@ | ||
package mill.local.plugins.ci.release | ||
|
||
private[release] object Discover { | ||
implicit def millEvaluatorTokenReader = mill.main.TokenReaders.millEvaluatorTokenReader | ||
} |
Oops, something went wrong.