From 50082b69e535851a358647477bfc7b8512b43880 Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Sun, 10 Jul 2022 20:19:42 +0900 Subject: [PATCH] =?UTF-8?q?input=E3=81=AEboolean=E3=81=AF=E6=96=87?= =?UTF-8?q?=E5=AD=97=E5=88=97=E3=81=A8=E3=81=97=E3=81=A6=E6=B8=A1=E3=81=A3?= =?UTF-8?q?=E3=81=A6=E3=81=8F=E3=82=8B=E3=81=AE=E3=81=A7=E5=88=A4=E5=AE=9A?= =?UTF-8?q?=E3=82=92=E4=BF=AE=E6=AD=A3=20(#166)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * inputのbooleanは文字列として渡ってくるので判定を修正 * 修正もれ --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3bb8f02a..57b48427f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ env: jobs: build-cpp-shared: - environment: ${{ github.event.inputs.code_signing && 'code_signing' }} # コード署名用のenvironment + environment: ${{ github.event.inputs.code_signing == 'true' && 'code_signing' }} # コード署名用のenvironment(false時の挙動は2022年7月10日時点で未定義動作) strategy: fail-fast: false matrix: @@ -286,7 +286,7 @@ jobs: cp README.md "artifact/${{ env.ASSET_NAME }}/README.txt" - name: Code signing (Windows) - if: startsWith(matrix.os, 'windows') && github.event.inputs.code_signing + if: startsWith(matrix.os, 'windows') && github.event.inputs.code_signing == 'true' shell: bash run: | bash build_util/codesign.bash "artifact/${{ env.ASSET_NAME }}/core.dll"