| from steps import upload_artifacts | |
| class PostBuild(): | |
| def __init__(self): | |
| self.upload_artifacts_step = upload_artifacts.UploadArtifacts() | |
| def run_build(self): | |
| self.upload_artifacts_step.run_script() | |
| def main(): | |
| postbuild = PostBuild() | |
| postbuild.run_build() | |
| if __name__ == "__main__": | |
| main() |