Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba2k2 committed Mar 25, 2023
2 parents 53c813f + cefb0de commit 1071a08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/utils/extract_changelogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
(title, changelog) = get_changelog(project_dir, format="plain")

# plain text changelog - Firebase App Distribution
with open(dir + "whatsnew-titled.txt", "w", encoding="utf-8") as f:
with open(dir + "whatsnew_titled.txt", "w", encoding="utf-8") as f:
f.write(title)
f.write("\n")
f.write(changelog)
print("::set-output name=changelogPlainTitledFile::" + dir + "whatsnew-titled.txt")
print("::set-output name=changelogPlainTitledFile::" + dir + "whatsnew_titled.txt")

print("::set-output name=changelogTitle::" + title)

Expand Down

0 comments on commit 1071a08

Please sign in to comment.