Skip to content

Commit

Permalink
fix ci 2
Browse files Browse the repository at this point in the history
  • Loading branch information
topi-banana committed Dec 24, 2024
1 parent 0c41e0e commit d9f81a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
chmod +x gradlew
if [ -z "${{ inputs.target_subproject }}" ]; then
echo "Building all subprojects"
./gradlew build
./gradlew build-all
else
args=$(echo "${{ inputs.target_subproject }}" | tr ',' '\n' | sed 's/$/:build/' | paste -sd ' ')
args=$(echo "${{ inputs.target_subproject }}" | tr ',' '\n' | sed 's/^/build-/')
echo "Building with arguments=$args"
./gradlew $args
fi
Expand Down

0 comments on commit d9f81a6

Please sign in to comment.