Skip to content

Commit

Permalink
Fix list of files used for sls function deploy.
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenchio committed Jan 13, 2025
1 parent 9ca141b commit 73688a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def deploy_lambda():

run(f'zip -qr ../{code_archive_name} .', cwd=package_deps_path)
run(
f'zip -qg {code_archive_name} ./*.py',
f'zip -qg {code_archive_name} pipedrive.py handler.py '
'contact_form.py newsletter_sign_up.py',
cwd=package_path,
)

Expand Down

0 comments on commit 73688a7

Please sign in to comment.