generated from InsanusMokrassar/TelegramBotAPI-bot_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f90e28d
commit df51acd
Showing
5 changed files
with
61 additions
and
0 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,5 @@ | ||
# Changelog | ||
|
||
## 0.0.1 | ||
|
||
Inited :) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
function parse() { | ||
version="$1" | ||
|
||
while IFS= read -r line && [ -z "`echo "$line" | grep -e "^#\+ $version"`" ] | ||
do | ||
: # do nothing | ||
done | ||
|
||
while IFS= read -r line && [ -z "`echo "$line" | grep -e "^#\+"`" ] | ||
do | ||
echo "$line" | ||
done | ||
} | ||
|
||
version="$1" | ||
file="$2" | ||
|
||
if [ -n "$file" ]; then | ||
parse "$version" < "$file" | ||
else | ||
parse "$version" | ||
fi |
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,30 @@ | ||
private String getCurrentVersionChangelog() { | ||
OutputStream changelogDataOS = new ByteArrayOutputStream() | ||
exec { | ||
commandLine 'chmod', "+x", './changelog_parser.sh' | ||
} | ||
exec { | ||
standardOutput = changelogDataOS | ||
commandLine './changelog_parser.sh', "${project.version}", 'CHANGELOG.md' | ||
} | ||
|
||
return changelogDataOS.toString().trim() | ||
} | ||
|
||
if (new File(projectDir, "secret.gradle").exists()) { | ||
apply from: './secret.gradle' | ||
apply plugin: "com.github.breadmoirai.github-release" | ||
|
||
githubRelease { | ||
token "${project.property('GITHUB_RELEASE_TOKEN')}" | ||
|
||
owner "InsanusMokrassar" | ||
repo "PlaguBot" | ||
|
||
tagName "${project.version}" | ||
releaseName "${project.version}" | ||
targetCommitish "${project.version}" | ||
|
||
body getCurrentVersionChangelog() | ||
} | ||
} |
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