Skip to content

Commit

Permalink
Remove package specific databases
Browse files Browse the repository at this point in the history
  • Loading branch information
StrahinjaJacimovic committed Jul 3, 2024
1 parent da6b9d2 commit a0f50a3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -797,9 +797,10 @@ async def main(token, repo, tag_name):
async with aiohttp.ClientSession() as session:
await upload_release_asset(session, token, repo, tag_name, "necto_db.db")

for each_package in packages:
async with aiohttp.ClientSession() as session:
await upload_release_asset(session, token, repo, tag_name, f"output/databases/{each_package['name']}.db")
# Uncomment to get specific test database per package
# for each_package in packages:
# async with aiohttp.ClientSession() as session:
# await upload_release_asset(session, token, repo, tag_name, f"output/databases/{each_package['name']}.db")

# Generate clocks.json
input_directory = "./"
Expand Down

0 comments on commit a0f50a3

Please sign in to comment.