Skip to content

Commit

Permalink
test empty again
Browse files Browse the repository at this point in the history
  • Loading branch information
hspitzley-czi committed Feb 23, 2024
1 parent 18360aa commit 12e5ae0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/find-changed-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ runs:
const uniqueChangedGoPackages = [...new Set(changedGoPackages)];
console.log(`Found the following changed Go packages: ${JSON.stringify(uniqueChangedGoPackages, null, 2)}\n OG: ${JSON.stringify(changedFiles, null, 2)} `)
core.setOutput("changedGoPackages", uniqueChangedGoPackages)
core.setOutput("changedGoPackages", [])
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ jobs:
if: ${{ needs.find-changed-packages.outputs.changedPackages != '[]' }}
strategy:
matrix:
# gopkg: ${{ fromJson(needs.find-changed-packages.outputs.changedPackages) }}
gopkg: []
gopkg: ${{ fromJson(needs.find-changed-packages.outputs.changedPackages) }}

steps:
- uses: actions/checkout@v4
Expand All @@ -48,8 +47,7 @@ jobs:
if: ${{ needs.find-changed-packages.outputs.changedPackages != '[]' }}
strategy:
matrix:
# gopkg: ${{ fromJson(needs.find-changed-packages.outputs.changedPackages) }}
gopkg: []
gopkg: ${{ fromJson(needs.find-changed-packages.outputs.changedPackages) }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 12e5ae0

Please sign in to comment.