Skip to content

Commit

Permalink
Fix: actionlintにひっかかってたので修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Mar 25, 2024
1 parent 0d4ac2f commit 223d722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,8 @@ jobs:
rm -rf lib/src/main/resources/jniLibs
while IFS= read -r line; do
IFS=' ' read -r artifact_name target <<< "$line"
mkdir -p lib/src/main/resources/$1/$target
cp -v ../../artifacts/voicevox_core_java_api-$artifact_name/*.{dll,so,dylib} lib/src/main/resources/$1/$target/ || true
mkdir -p "lib/src/main/resources/$1/$target"
cp -v "../../artifacts/voicevox_core_java_api-$artifact_name"/*.{dll,so,dylib} "lib/src/main/resources/$1/$target/" || true
echo "$artifact_name => $1/$target"
done
}
Expand Down

0 comments on commit 223d722

Please sign in to comment.