Relative Content

Tag Archive for githubcontinuous-integrationgithub-actionscontinuous-deployment

How to share artifacts between workflows in GitHub Actions?

workflowA generates artifacts which are needed to be consumed by workflowB.
Both workflows are triggered manually with workflow_dispatch, and I prefer not to use workflow_call or workflow_run events (as I do not want that workflowB will be triggered immediately once workflowA finishes).