From 769765d5cd101d0be4b73c8b11c2dd39de86ca8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=97=E9=A2=A8?= Date: Fri, 15 Apr 2022 19:39:09 +0900 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/VOICEVOX/voicevox/issues/775#issuecomment-1099556796 --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ba6ce52e89..54a305445e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -581,17 +581,18 @@ jobs: run: | brew install gnu-sed - # NOTE: If the CPU/GPU builds have the same package name, + # NOTE: If the CPU/DirectML/GPU builds have the same package name, # the NSIS installers and the 7z files have duplicate names. # For Linux, If they have the same product name, # the AppImages have duplicate names. # Files with the same name cannot be uploaded to a single GitHub Release, - # so different package/product names should be used for CPU/GPU builds. + # so different package/product names should be used for CPU/DirectML/GPU builds. - name: Replace package name & version shell: bash run: | # GPU: "name": "voicevox" => "name": "voicevox" # CPU: "name": "voicevox" => "name": "voicevox-cpu" + # DirectML: "name": "voicevox" => "name": "voicevox-directml" "${{ matrix.sed_name }}" -i 's/"name": "voicevox"/"name": "${{ matrix.package_name }}"/' package.json # "${{ matrix.sed_name }}" -i 's/productName: "VOICEVOX"/productName: "${{ matrix.product_name }}"/' vue.config.js