Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update placeholder in upload script #367

Merged
merged 1 commit into from
Aug 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion script/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,20 @@ def get_text_with_editor(name):
def create_release_draft(repo, tag):
name = '{0} {1}'.format(release_name(), tag)
# TODO: Parse release notes from CHANGELOG.md
body = '(placeholder)'
body = '''*WARNING: Not an official Brave release. Use at your own risk.*

These builds are an in-development early access view into the re-write of the
Brave Browser for Desktop platforms.

### Linux install instructions
http://brave-browser.readthedocs.io/en/latest/installing-brave.html#linux

### Windows
`BraveBrowserDevSetup.exe` will fetch and install the latest available version.

Until we have brave_installer.exe working without the need for adding cmd line
args it is unlisted in favor of the stub installer above to avoid confusion.'''

data = dict(tag_name=tag, name=name, body=body, draft=True)

release = retry_func(
Expand Down