kami-blue/scripts/hook.sh

25 lines
986 B
Bash
Raw Normal View History

2020-03-10 22:31:43 +00:00
#!/bin/bash
2020-03-11 03:12:34 +00:00
if [[ "$TRAVIS_PULL_REQUEST" == "true" ]]; then exit 0; else echo "">/dev/null; fi
COMMIT_TRIM="${TRAVIS_COMMIT::7}"
COMMIT_MSG="$TRAVIS_COMMIT_MESSAGE"
if [[ "$BRANCH" == "master" ]]; then
2020-03-11 02:55:55 +00:00
# Send message with branch name
2020-04-04 08:41:52 +00:00
curl -H "Content-Type: application/json" -X POST -d '{"embeds": [{"title": "","color": 10195199,"description": "**Changelog:** '"$COMMIT_MSG"'\nBranch: `'"$BRANCH"'`\nCommit: ['${COMMIT_TRIM}'](https://github.com/kami-blue/client/commits/'${COMMIT_TRIM}') Direct: ['${COMMIT_TRIM}'](https://github.com/kami-blue/client/commit/'${TRAVIS_COMMIT}') "}]}' "$WEBHOOK"
2020-03-10 22:31:43 +00:00
2020-04-04 21:25:03 +00:00
# TODO: Fix the file uploading, it ain't working chief
2020-03-11 02:55:55 +00:00
# Upload the release file
BUILD_DIR="$(readlink -f ./build/libs/)"
JAR_DIR="$(ls "$BUILD_DIR" | grep "release")"
2020-04-05 10:19:36 +00:00
mv ${JAR_DIR} ${BUILD_DIR}/kamiblue-1.1.2-release-${COMMIT_TRIM}.jar
2020-04-04 21:06:01 +00:00
2020-04-04 21:17:13 +00:00
JAR_DIR="$(ls "$BUILD_DIR" | grep "$COMMIT_TRIM")"
curl -F content=@"$JAR_DIR" "$WEBHOOK"
2020-03-11 02:55:55 +00:00
else
exit 0
2020-04-04 21:06:01 +00:00
fi