We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfafaf0 commit d57af24Copy full SHA for d57af24
.github/actions/compile-docs/action.yml
@@ -20,7 +20,7 @@ runs:
20
using: "composite"
21
steps:
22
- name: Reject invalid inputs
23
- if: ${{ (inputs.use-swiftpm == 'true' && (inputs.symbol-graph-dir != '' || inputs.use-symbol-graph-artifact == 'true' || inputs.docc-catalog != '')) || ((inputs.symbol-graph-dir != '') == (inputs.use-symbol-graph-artifact == 'true')) }}
+ if: ${{ (inputs.use-swiftpm == 'true' && (inputs.symbol-graph-dir != '' || inputs.use-symbol-graph-artifact == 'true' || inputs.docc-catalog != '')) || (inputs.use-swiftpm != 'true' && (inputs.symbol-graph-dir != '') == (inputs.use-symbol-graph-artifact == 'true')) }}
24
run: |
25
echo "target: $TARGET"
26
echo "use-swiftpm: $USE_SWIFTPM"
0 commit comments