From 5ff64283febb36ac49f142cef2b573eeec9c924e Mon Sep 17 00:00:00 2001 From: edavidaja Date: Thu, 14 Dec 2023 13:12:10 -0500 Subject: [PATCH] paths --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3bb4b13..c83ca48 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 @@ -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