Skip to content

Commit

Permalink
another fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed Aug 14, 2024
1 parent acbd827 commit 55f9115
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish_docker_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ on:
jobs:
generate-workflows-list:
runs-on: ubuntu-latest
outputs:
matrix_json: ${{ steps.discover_workflows.outputs.matrix_json }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -35,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
workflow: [wf1.yml, wf2.yml] # List of workflows to trigger
workflow: ${{ fromJson(needs.generate-workflows-list.outputs.matrix_json) }}

steps:
- name: Trigger Workflow
Expand Down

0 comments on commit 55f9115

Please sign in to comment.