From dd724a06affc8fbbdf9942601bf3c744deec1df9 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Fri, 24 Apr 2020 08:27:44 +0200 Subject: [PATCH] Fix upload paths within drone --- .drone.star | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.star b/.drone.star index e83bb2a..b7bcc21 100644 --- a/.drone.star +++ b/.drone.star @@ -313,10 +313,10 @@ def binary(ctx, name): 'from_secret': 'gpgsign_passphrase', }, 'files': [ - 'dist/release/*', + 'dist/%s-*' % ctx.repo.name, ], 'excludes': [ - 'dist/release/*.sha256', + 'dist/*.sha256', ], 'detach_sign': True, }, @@ -349,7 +349,7 @@ def binary(ctx, name): 'from_secret': 'github_token', }, 'files': [ - 'dist/release/*', + 'dist/%s-*' % ctx.repo.name, ], 'title': ctx.build.ref.replace('refs/tags/', ''), 'note': 'dist/CHANGELOG.md',