Skip to content

Commit

Permalink
fix archive name
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jul 23, 2019
1 parent 24467cc commit c930289
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qgispluginci/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def release(parameters: Parameters,
tr.pull()
tr.compile_strings()

output = '{project_slug}-{release_version}.zip'.format(project_slug=parameters.project_slug,
release_version=release_version)
# zipname apparently must have the same name as the package repository
output = '{zipname}-{release_version}.zip'.format(zipname=parameters.plugin_path, release_version=release_version)
create_archive(parameters, output=output, add_translations=transifex_token is not None)
if github_token is not None:
upload_asset_to_github_release(
Expand Down

0 comments on commit c930289

Please sign in to comment.