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 68ffb69 commit b5796e3Copy full SHA for b5796e3
.github/workflows/main.yml
@@ -22,11 +22,11 @@ jobs:
22
- name: Parse sound multiplexer dependencies
23
run: |
24
DEPS="${{ matrix.dependency }}"
25
- echo "deps_raw=$DEPS" >> $GITHUB_OUTPUT
+ echo "deps_raw=$DEPS" >> "$GITHUB_OUTPUT"
26
if [[ -z "$DEPS" || "$DEPS" == "none" ]]; then
27
- echo "has_deps=false" >> $GITHUB_OUTPUT
+ echo "has_deps=false" >> "$GITHUB_OUTPUT"
28
else
29
- echo "has_deps=true" >> $GITHUB_OUTPUT
+ echo "has_deps=true" >> "$GITHUB_OUTPUT"
30
fi
31
- name: install sound multiplexer
32
if: steps.deps.outputs.has_deps == 'true'
0 commit comments