Skip to content

Commit

Permalink
Fix: read忘れ
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
sevenc-nanashi committed Sep 18, 2023
1 parent 15f23cf commit 78ea083
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 @@ -539,7 +539,7 @@ jobs:
cat <<EOF | while read -r line; do
windows-x64-directml|windows-x64
EOF
mkdir "crates/voicevox_core_java_api/lib/src/main/resources/dll/${target}/"
IFS='|' read -r artifact_name target <<< "$line"
cp -v artifact/$artifact_name/* "crates/voicevox_core_java_api/lib/src/main/resources/dll/${target}/"
done
Expand All @@ -566,8 +566,8 @@ jobs:
android-arm64-cpu|arm64-v8a
android-x86_64-cpu|x86_64
EOF
mkdir -p "crates/voicevox_core_java_api/lib/src/main/resources/jniLibs/${target}/"
IFS='|' read -r artifact_name target <<< "$line"
mkdir "crates/voicevox_core_java_api/lib/src/main/resources/jniLibs/${target}/"
cp -v artifact/$artifact_name/* "crates/voicevox_core_java_api/lib/src/main/resources/jniLibs/${target}/"
done
Expand Down

0 comments on commit 78ea083

Please sign in to comment.