I have a workflow that builds my application on multiple versions of node (using matrixes), and because it uses matrixes, it generates one job for each node version. I’d like to set up another workflow to release the app, which will only run if the branch is master, and after all jobs generated by the build workflow are successful.
Am I able to do that with Github Actions?
I know I can do so with travis ci, using the job lifecycle “after_success”, so I was curious if something similar was possible using actions…