Github Actions/download ((link))-artifact@v3 Guide

When downloading, be mindful of where you place the files. If you are downloading multiple artifacts without specifying a name, v3 will create a directory for each artifact. Plan your subsequent steps (like ls or run ) accordingly. 3. Clean Up

: v4 is not backward compatible with artifacts uploaded using v3. If your workflow uses upload-artifact@v3 , you must use download-artifact@v3 . github actions/download-artifact@v3

To use v3, you typically include it in a job that depends on a previous job where an artifact was created. When downloading, be mindful of where you place the files

Scroll to Top