Get the latest tech news
CI jobs artifacts should not be difficult
-artifacts # Job Artifacts DSCI dramatically simplify working with artifacts process inside pipelines. To create artifact file just create it in `~/artifacts/` directory in some task file, for example: ```bash #!/bin/bash echo "DSCI is cool" > ~/artifacts.txt ``` The the next job will see it in the same directory: ```python #!/usr/bin/python3 from pathlib import Path file_path = Path.home() / "artifacts.txt" # 2.
None
Or read this on Hacker News