Home > Article > Development Tools > how to download artifacts from github actions
This article provides instructions and methods for retrieving artifacts generated during a GitHub Actions workflow. It explains how to manually download artifacts through the GitHub Actions UI and how to programmatically access and download artifacts
How can I retrieve artifacts generated during a GitHub Actions workflow?
To retrieve artifacts generated during a GitHub Actions workflow, you can follow the steps provided below:
What methods are available to download artifacts from a specific GitHub Actions run?
There are two main methods available to download artifacts from a specific GitHub Actions run:
Can I programmatically access and download artifacts from my GitHub Actions workflows?
Yes, you can programmatically access and download artifacts from your GitHub Actions workflows using the GitHub API. Here are the steps to do this:
For example, the following command will download all artifacts from the latest run of the "build" workflow in the "my-repo" repository:
<code>gh artifacts download my-repo/build</code>
The above is the detailed content of how to download artifacts from github actions. For more information, please follow other related articles on the PHP Chinese website!