Use GitHub strategy.matrix for calling reusable workflows - Stack Overflow

admin2025-04-15  4

I have the following workflow:

jobs:  
  job-1:
    strategy:
      matrix:
        app: [workflow1, workflow2, workflow3]
    uses: ${{ app }}

Like this I get the error that GitHub can't find ${{app}} workflow. Is it possible to make this somehow work?

转载请注明原文地址:http://www.anycun.com/QandA/1744729804a86810.html