build: upload sentry src bundles to symbol S3 bucket (#22572)

This commit is contained in:
Samuel Attard
2020-03-09 15:26:45 -07:00
committed by GitHub
parent a8ffb81be6
commit 85d4040833
2 changed files with 3 additions and 1 deletions

View File

@@ -30,7 +30,7 @@ def main():
run_symstore(pdb, SYMBOLS_DIR, PRODUCT_NAME)
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
else:
files = glob.glob(SYMBOLS_DIR + '/*/*/*.sym')
files = glob.glob(SYMBOLS_DIR + '/*/*/*.sym') + glob.glob(SYMBOLS_DIR + '/*/*/*.src.zip')
# The file upload needs to be atom-shell/symbols/:symbol_name/:hash/:symbol
os.chdir(SYMBOLS_DIR)