Learn how to share artifacts between jobs in GitHub CI/CD workflows


LearnAzureDevOps-O5

Learn how to share artifacts between jobs in GitHub CI/CD workflows

In GitHub Actions, artifacts allow files or directories to be shared between jobs in a workflow. This can be useful for passing data, build outputs, test results, or deployment artifacts across different steps or jobs.

1. Creating and Uploading Artifacts

Upload-artifact Action

The actions/upload-artifact action allows files to be uploaded as artifacts. These artifacts can then be downloaded by subsequent jobs in the workflow.

Example: Uploading Artifacts

2. Downloading Artifacts

Download-artifact Action

The actions/download-artifact action retrieves previously uploaded artifacts and makes them available for use in subsequent jobs.

Example: Downloading Artifacts

3. Artifact Retention

GitHub provides configurable artifact retention to manage how long artifacts are stored after a workflow completes.

Setting Artifact Retention

You can specify how long artifacts should be retained:

In this example:

Artifacts are retained for 7 days before being deleted automatically.

4. Deleting Artifacts

You can manually delete artifacts via actions using the actions/artifact-cleanup action or automatically after a specified retention period.

Deleting Artifacts

This deletes all artifacts older than 30 days.

5. Using Permissions

  • Upload Permissions: Grant necessary permissions for uploading artifacts:

  • Download Permissions: Ensure artifacts can be downloaded:

6. Artifact Limits and Storage

GitHub imposes limits on artifact sizes and total storage:

  • Maximum artifact size: 100 GB per workflow run.

  • Total storage limit: 2 GB per user (across all repositories).

Best Practices for Using Artifacts

  1. Granular Artifacts: Create multiple smaller artifacts for different types of outputs (e.g., build artifacts, test reports).

  2. Limit Retention: Set a reasonable retention period for artifacts to manage storage costs and reduce the lifecycle of unused artifacts.

  3. Secure Access: Ensure sensitive data is stored securely, especially when handling API keys or other sensitive information.

  4. Error Handling: Implement error handling in workflows if artifact operations fail (e.g., downloads, deletions).

  5. Matrix Strategy: Use artifacts effectively in matrix testing to share results between environments (e.g., different OS, Node.js versions).

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.