Skip to content

Commit

Permalink
fix artifact upload
Browse files Browse the repository at this point in the history
  • Loading branch information
peterebden committed Mar 19, 2019
1 parent 6739b75 commit 7b5da4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
13.5.0-beta1
13.5.0-beta2
3 changes: 2 additions & 1 deletion tools/misc/gen_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ def upload_sftp(self, artifacts, signatures):
f.write(f'mkdir darwin_amd64/{self.version}\n')
for artifact in artifacts + signatures:
arch = 'darwin' if 'darwin' in artifact else 'linux'
f.write(f'put {artifact} {arch}_amd64/{self.version}/{artifact}\n')
filename = os.path.basename(artifact)
f.write(f'put {artifact} {arch}_amd64/{self.version}/{filename}\n')
f.write('put latest_version\n')
f.write('bye\n')
if not FLAGS.dry_run:
Expand Down
12 changes: 0 additions & 12 deletions tools/misc/upload_docs.sh

This file was deleted.

0 comments on commit 7b5da4f

Please sign in to comment.