Skip to content

Commit

Permalink
use only main instead of --only-dev option
Browse files Browse the repository at this point in the history
  • Loading branch information
CM000n committed Dec 14, 2023
1 parent fbed2c4 commit 040e835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
exit 1
fi
current_dependencies=$(poetry show --no-dev | awk '{print $1}')
current_dependencies=$(poetry show --only main | awk '{print $1}')
manifest_dependencies=$(jq -r '.requirements[]' custom_components/qss/manifest.json)
for dependency in $manifest_dependencies; do
if ! echo "$current_dependencies" | grep -q "$dependency"; then
Expand Down

0 comments on commit 040e835

Please sign in to comment.