Skip to content

Commit 5d1c232

Browse files
committed
AEA-5986 Handle bool correctly in if condition.
1 parent 39c46df commit 5d1c232

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tag-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ jobs:
240240
name: config_artifact
241241

242242
- name: Cache asdf
243-
if: inputs.publish_packages != '' || inputs.pypi_publish != ''
243+
if: ${{ inputs.publish_packages != '' || inputs.pypi_publish }}
244244
uses: actions/cache@v5
245245
with:
246246
path: |
@@ -250,15 +250,15 @@ jobs:
250250
${{ runner.os }}-asdf-
251251
252252
- name: Install asdf dependencies in .tool-versions
253-
if: inputs.publish_packages != '' || inputs.pypi_publish != ''
253+
if: ${{ inputs.publish_packages != '' || inputs.pypi_publish }}
254254
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
255255
with:
256256
asdf_version: ${{ inputs.asdfVersion }}
257257
env:
258258
PYTHON_CONFIGURE_OPTS: --enable-shared
259259

260260
- name: Install Dependencies and Build Package
261-
if: inputs.publish_packages != '' || inputs.pypi_publish != ''
261+
if: ${{ inputs.publish_packages != '' || inputs.pypi_publish }}
262262
run: |
263263
make install
264264
make build

0 commit comments

Comments
 (0)