diff --git a/.github/commands/deploy.sh b/.github/commands/deploy.sh deleted file mode 100644 index 6b40ee0..0000000 --- a/.github/commands/deploy.sh +++ /dev/null @@ -1,27 +0,0 @@ -set -euo pipefail -IFS=$'\n\t' - -function cleanup { - echo "๐Ÿงน Cleanup..." - rm -f gradle.properties golo-dev-sign.asc -} - -trap cleanup SIGINT SIGTERM ERR EXIT - -echo "๐Ÿš€ Preparing to deploy..." - -echo "๐Ÿ”‘ Decrypting files..." - -gpg --quiet --batch --yes --decrypt --passphrase="${GPG_SECRET}" \ - --output golo-dev-sign.asc .build/golo-dev-sign.asc.gpg - -gpg --quiet --batch --yes --decrypt --passphrase="${GPG_SECRET}" \ - --output gradle.properties .build/gradle.properties.gpg - -gpg --fast-import --no-tty --batch --yes golo-dev-sign.asc - -echo "๐Ÿ“ฆ Publishing..." - -gradle publish - -echo "โœ… Done!" \ No newline at end of file