Skip to content

Commit

Permalink
Update test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhadas authored Oct 22, 2024
1 parent ea6dbef commit fa0bbcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
define-securecomms-matrix:
prep-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
Expand All @@ -13,9 +13,9 @@ jobs:
echo "matrix=$(jq -c . < ./src/cloud-api-adaptor/libvirt/e2e_matrix_libvirt.json)" >> "$GITHUB_OUTPUT"
produce-securecomms-matrix:
runs-on: ubuntu-latest
needs: define-securecomms-matrix
needs: prep-matrix
strategy:
matrix: ${{ fromJSON(needs.prep_install.outputs.matrix) }}
matrix: ${{ fromJSON(needs.prep-matrix.outputs.matrix) }}
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
Expand Down

0 comments on commit fa0bbcd

Please sign in to comment.