File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments