You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have three workflows, namely for Windows.yml, Linux.yml, and macOS.yml. Their corresponding platforms have x86 and arm. They are packaged and uploaded in the following way:
Name: Upload folder as artifact with ubuntu
Uses: actions/upload-artifact@v4
With:
Name: ProxyServiceApp-x64-Ubuntu
Path: Release/
and other
Now I have newly created a release.yml, and I want to download the artifacts uploaded after compilation to a specified directory.
How can all the workflow files that were last uploaded and packaged be downloaded to the specified directory through actions/download-artifact@v4? And keep the original file names as well?
Sorry, I didn’t describe it clearly. I currently have three workflows, and I’ve already used actions/upload-artifact to upload the packages. Now, I have a new workflows.release.yml which is mainly used to publish all the packaged software to the GitHub release page. However, I’m not sure how to download all the files uploaded by actions/upload-artifact through actions/download-artifact, because I can only publish the release after downloading them. In other words, how can actions/download-artifact retrieve the files uploaded by other workflows?
ActionsBuild, test, and automate your deployment pipeline with world-class CI/CDQuestion
2 participants
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Select Topic Area
Question
Body
I have three workflows, namely for Windows.yml, Linux.yml, and macOS.yml. Their corresponding platforms have x86 and arm. They are packaged and uploaded in the following way:
and other
Now I have newly created a release.yml, and I want to download the artifacts uploaded after compilation to a specified directory.
How can all the workflow files that were last uploaded and packaged be downloaded to the specified directory through actions/download-artifact@v4? And keep the original file names as well?
Beta Was this translation helpful? Give feedback.
All reactions