Skip to content

Commit

Permalink
paths
Browse files Browse the repository at this point in the history
  • Loading branch information
edavidaja committed Dec 14, 2023
1 parent 296804d commit 5ff6428
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
list-manifests:
runs-on: ubuntu-latest
outputs:
manifests: ${{ steps.list-manifests.outputs.manifests }}
paths: ${{ steps.list-manifests.outputs.paths }}
steps:
- name: List manifests
id: list-manifests
Expand All @@ -23,8 +23,8 @@ jobs:
needs: list-manifests
runs-on: ubuntu-latest
strategy:
matrix:
paths: ${{ fromJson(needs.list-manifests.outputs.manifests) }}
matrix:
paths: ${{ fromJson(needs.list-manifests.outputs.paths) }}
steps:
- name: Install Python
uses: actions/setup-python@v4
Expand Down

0 comments on commit 5ff6428

Please sign in to comment.