Skip to content

Commit

Permalink
inputのbooleanは文字列として渡ってくるので判定を修正 (#166)
Browse files Browse the repository at this point in the history
* inputのbooleanは文字列として渡ってくるので判定を修正

* 修正もれ
  • Loading branch information
Hiroshiba authored Jul 10, 2022
1 parent 73a621f commit 50082b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 50082b6

Please sign in to comment.