CI: Remove pycache from artifacts (#858)

* CI: Remove pycache from artifacts

* CI: Move bundle scripts step even higher
This commit is contained in:
Anna Prosvetova
2021-12-01 13:21:26 +03:00
committed by GitHub
parent 93fdf98588
commit 54c41e4189
2 changed files with 12 additions and 12 deletions

View File

@@ -35,7 +35,7 @@ class Main(App):
def generate(self):
meta = {}
for k, v in vars(self.args).items():
if k == "project" or k == "func":
if k in ["project", "func", "debug"]:
continue
if isinstance(v, str):
v = v.strip('"')