File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/actions/compile-docs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1919 using : " composite"
2020 steps :
2121 - name : Compile documentation (with SwiftPM)
22- if : ${{ inputs.xcodebuild != true }} # Compare to constant to treat empty input as false
22+ if : ${{ inputs.xcodebuild != ' true' }} # Compare to constant to treat empty input as false
2323 run : |
2424 set -ex
2525 mkdir "$TARGET.doccarchive" && \
3939 env :
4040 TARGET : ${{ inputs.target }}
4141 - name : Compile documentation (with xcodebuild)
42- if : ${{ inputs.xcodebuild == " true" }} # Compare to constant to treat empty input as false
42+ if : ${{ inputs.xcodebuild == ' true' }} # Compare to constant to treat empty input as false
4343 run : |
4444 set -ex
4545 destination=""
5757 TARGET : ${{ inputs.target }}
5858 DEVICE_TYPE : ${{ inputs.xcodebuild-device-type }}
5959 - uses : actions/upload-artifact@v4
60- if : ${{ inputs.upload == true }} # Compare to constant to treat empty input as false
60+ if : ${{ inputs.upload == ' true' }} # Compare to constant to treat empty input as false
6161 with :
6262 name : ${{ inputs.target }}.doccarchive
6363 path : ${{ inputs.target }}.doccarchive
You can’t perform that action at this time.
0 commit comments