What would you like to be added?
wild card filter in input parameter "name"
for example, if first upload multiple versions of artifacts as:
- uses: actions/upload-artifact@v3
with:
name: my_tag_${version}
path: ${artifact_path}
then, we hope to download alll the artifacts using wild card filter:
- uses: actions/download-artifact@v3
with:
name: my_tag-*
Why is this needed?
batch download artifacts using wild card filtering
What would you like to be added?
wild card filter in input parameter "name"
for example, if first upload multiple versions of artifacts as:
then, we hope to download alll the artifacts using wild card filter:
Why is this needed?
batch download artifacts using wild card filtering