Skip to content

Commit

Permalink
Merge pull request #151 from crazy-max/fix-nightly
Browse files Browse the repository at this point in the history
ci: fix nightly workflow
  • Loading branch information
crazy-max authored Aug 6, 2023
2 parents e73163c + 1aa3d55 commit 36c65fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
name: Create matrix
id: projects
run: |
projects=$(find ./pkg -maxdepth 1 -type d -printf '%P ' | jq -cR 'split(" ")')
projects=$(find ./pkg -maxdepth 1 -type d -printf '%P ')
projects=$(echo $projects | jq -cR 'split(" ")')
echo "matrix=$projects" >>${GITHUB_OUTPUT}
-
name: Show matrix
Expand Down

0 comments on commit 36c65fe

Please sign in to comment.