I've been rooting through the Github Action documentation around re-useable workflows and am attempting to piece together a chain of matrices.
My pseudo workflow looks something like the following steps.
It would seem a relatively simple objective. Yet it looks like workflow re-useable calls do not support strategy. Correct me if I'm wrong?
GitHub Actions matrix supports now reusable workflows (since 22.08.22):
jobs:
ReuseableMatrixJobForDeployment:
strategy:
matrix:
target: [dev, stage, prod]
uses: octocat/octo-repo/.github/workflows/deployment.yml@main
with:
target: ${{ matrix.target }}
References:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With