lfarci / github-actions

Preparation resources for the GitHub Actions certification
0 stars 0 forks source link

Demonstrate how to download workflow artifacts from the user interface #43

Closed lfarci closed 3 months ago

lfarci commented 3 months ago

Workflow artifacts can be downloaded from the GitHub user interface by following these steps:

  1. Navigate to your GitHub repository where the workflow runs.

  2. Click on the "Actions" tab.

  3. Click on the name of the workflow run from which you want to download an artifact. The workflow runs are listed on the left side of the screen.

  4. Scroll down to the "Artifacts" section at the bottom of the page. This section only appears if the workflow run has produced artifacts.

  5. Click on the name of the artifact you want to download. The artifact will be downloaded as a ZIP file.

Remember, the availability of artifacts depends on whether your workflow has been configured to upload artifacts using the actions/upload-artifact action. If no such action is configured in your workflow, no artifacts will be available for download.