From cc95e7c0d048d87cd1c4879720d0e78c4ede6285 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Fri, 24 Apr 2020 08:30:04 +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 a847c74..f7e2ef1 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',