[CI] Update CI to work with workspaces

This commit is contained in:
Douile 2023-10-17 13:05:02 +01:00
parent 7d4649b6f5
commit d34d615784
No known key found for this signature in database
GPG key ID: D94ABB9BCCB5A6EA
5 changed files with 23 additions and 18 deletions

View file

@ -39,7 +39,7 @@ jobs:
# Calculate how many of those games we have definitions for
rust_games_count=0
for game in $node_games; do
if grep "\"$game\" *=>" ./src/games/definitions.rs; then
if grep "\"$game\" *=>" ./crates/lib/src/games/definitions.rs; then
rust_games_count=$(( rust_games_count + 1 ))
fi
done