From b9c093ed97ffea3bd1b713bb37d9c8fc78ecada1 Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Thu, 7 Mar 2024 03:50:15 +0900 Subject: [PATCH] =?UTF-8?q?[release-0.17]=20upload=5Fartifact=E3=81=AE?= =?UTF-8?q?=E5=88=A4=E5=AE=9A=E3=83=95=E3=83=A9=E3=82=B0=E3=81=8C=E9=96=93?= =?UTF-8?q?=E9=81=95=E3=81=88=E3=81=A6=E3=81=84=E3=82=8B=E3=81=AE=E3=81=A7?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=20(#1914)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit upload_artifactの判定フラグが間違えているので修正 --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 640446aaa0..da6309f70f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -316,7 +316,7 @@ jobs: rm $name.tar - name: Upload Linux tar.gz (without nvidia) to Artifacts - if: startsWith(matrix.artifact_name, 'linux-') && !contains(matrix.artifact_name, 'nvidia') && github.event.inputs.upload_artifact + if: startsWith(matrix.artifact_name, 'linux-') && !contains(matrix.artifact_name, 'nvidia') && github.event.inputs.upload_artifact == 'true' uses: actions/upload-artifact@v3 with: name: ${{ matrix.artifact_name }}-targz @@ -346,7 +346,7 @@ jobs: 7z rn $name.zip prepackage/ VOICEVOX/ - name: Upload Windows & Mac zip (without nvidia) to Artifacts - if: (startsWith(matrix.artifact_name, 'windows-') || startsWith(matrix.artifact_name, 'macos-')) && !contains(matrix.artifact_name, 'nvidia') && github.event.inputs.upload_artifact + if: (startsWith(matrix.artifact_name, 'windows-') || startsWith(matrix.artifact_name, 'macos-')) && !contains(matrix.artifact_name, 'nvidia') && github.event.inputs.upload_artifact == 'true' uses: actions/upload-artifact@v3 with: name: ${{ matrix.artifact_name }}-zip @@ -435,7 +435,7 @@ jobs: done - name: Upload Linux AppImage split to Artifacts - if: endsWith(matrix.installer_artifact_name, '-appimage') && github.event.inputs.upload_artifact + if: endsWith(matrix.installer_artifact_name, '-appimage') && github.event.inputs.upload_artifact == 'true' uses: actions/upload-artifact@v3 with: name: ${{ matrix.installer_artifact_name }}-release @@ -453,7 +453,7 @@ jobs: target_commitish: ${{ github.sha }} - name: Upload macOS dmg to Artifacts - if: endsWith(matrix.installer_artifact_name, '-dmg') && github.event.inputs.upload_artifact + if: endsWith(matrix.installer_artifact_name, '-dmg') && github.event.inputs.upload_artifact == 'true' uses: actions/upload-artifact@v3 with: name: ${{ matrix.installer_artifact_name }}-release @@ -471,7 +471,7 @@ jobs: target_commitish: ${{ github.sha }} - name: Upload Windows NSIS Web to Artifacts - if: endsWith(matrix.installer_artifact_name, '-nsis-web') && github.event.inputs.upload_artifact + if: endsWith(matrix.installer_artifact_name, '-nsis-web') && github.event.inputs.upload_artifact == 'true' uses: actions/upload-artifact@v3 with: name: ${{ matrix.installer_artifact_name }}-release