kemitix-checkstyle-ruleset/.github/deploy.sh
Paul Campbell 4fe7d51c87
Replace Jenkins with Github Actions for CI (#282)
* Replace Jenkins with Github Actions for CI

* Remove JDK 13 from build matrix

Add it back in again once everything else has settled down.
2020-03-17 10:22:19 +00:00

34 lines
681 B
Bash

#!/usr/bin/env bash
# Decrypts the signing key in .github/codesigning.asc.enc
# Imports that key
# Uses .github/settings.xml and the release profile to deploy
echo "deploy.sh: Starting..."
(
cd .github
echo "Retrieving GPG Private KEY"
gpg --quiet \
--batch \
--yes \
--decrypt \
--passphrase="${GPG_PASSPHRASE}" \
--output codesigning.asc \
codesigning.asc.gpg
echo "Loading signing key"
gpg --batch \
--fast-import codesigning.asc
)
echo "Releasing..."
mvn ruleset tiles \
--settings .github/settings.xml \
-Dskip-Tests=true \
-P release \
-B \
deploy
echo "deploy.sh: Done."