action-download-artifact
action-download-artifact copied to clipboard
:gear: A GitHub Action to download an artifact associated with given workflow and commit or other criteria
We've seen quite a few times that we're rate limited by GitHub due to multiple API calls. This happens in cases where we have to paginate across results for `listWorkflowRuns`...
A really useful feature would be to allow for the search and retrieval of artifacts throughout the entirety of the repository and not a single workflow. This would allow for...
The latest version of this action depends on `@actions/[email protected]`. In this version, after creating a client like ``` const client = github.getOctokit(token) ``` the REST APIs should be called via`client.rest`,...
Sometimes the uploaded artifact is itself a .zip file or a .tar.gz or .tar.zst file and it would be cool if you added an option to do a second unpack/unzip...
Hi, I have two WorkFlows: Workflow-1 runs only when PR is Opened and below the condition. In this workflow I am creating and then uploading the artifact. on: pull_request: branches:...
## Summary First off, I have found this Action very useful! Thanks for creating it! For workflows that need multiple artifacts from another workflow, but not all, I'd like the...
Super useful GH action, thank you for providing this to the community! I'm wondering if supporting wildcards in names would be an useful feature? For example, in [cases like this](https://github.com/Palakis/obs-websocket/runs/2879789876?check_suite_focus=true)...
I created Build and Deploy workflows where the Deploy workflow retrieves artifacts from the Build workflow. This excellent action is working successfully in several repos, but in one instance there...
I see `Error: no matching workflow run found with any artifacts?` when I try to use this action without specifying a `name` parameter. If I specify a `name` for an...