Skip to content

Commit

Permalink
Finally finished the release description writer
Browse files Browse the repository at this point in the history
Also bumped the version to prevent a release collision
  • Loading branch information
ModEngineer committed Apr 14, 2022
1 parent abca6e1 commit 8cd939b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
textBody += " Commit messages and descriptions since the last release are shown below:"
for (const hash of hashes) {
textBody += '\n- ' + child_process.execSync(`git log --pretty='format:%s' -n 1 ${hash}`, {cwd: process.env.GITHUB_WORKSPACE}).toString()
let commitBodyLines = child_process.execSync(`git log --pretty='format:%b' -n 1 ${hash}`, {cwd: process.env.GITHUB_WORKSPACE}).toString()
let commitBodyLines = child_process.execSync(`git log --pretty='format:%b' -n 1 ${hash}`, {cwd: process.env.GITHUB_WORKSPACE}).toString().split('\n')
for (const line of commitBodyLines) {
textBody += '\n ' + line
}
Expand Down
2 changes: 1 addition & 1 deletion ppl_meshexport_addon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "ModEngineer",
"blender": (2, 80, 0),
"description": "A mesh exporter for PewPew Live",
"version": (0, 5, 5),
"version": (0, 5, 6),
"tracker_url":
"https://www.github.com/ModEngineer/PewPewLive-MeshExporter/issues",
"category": "Import-Export"
Expand Down

0 comments on commit 8cd939b

Please sign in to comment.