Skip to content

Commit b1dd651

Browse files
authored
Merge pull request #478 from stackhpc/nightly-sync-fix
Fix nightly package sync matrix generation
2 parents 0bd1c62 + 323841c commit b1dd651

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/package-sync-nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ jobs:
3030
# Use YQ to make a list of all unique sync groups, and format as a GH
3131
# actions matrix
3232
run: |
33-
groups=$(yq -o=json -I=0 \
33+
groups=$(yq eval-all -o=json -I=0 \
3434
'([.rpm_package_repos[] | .sync_group | select(.) ]) + ([.deb_package_repos[] | .sync_group | select(.) ]) | unique' \
35-
ansible/inventory/group_vars/all/package-repos)
35+
ansible/inventory/group_vars/all/*)
36+
3637
echo -n "matrix={\"sync_group\": " >> $GITHUB_OUTPUT
3738
echo -n $groups >> $GITHUB_OUTPUT
3839
echo "}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)