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 e3907bb commit 38df3e3Copy full SHA for 38df3e3
.github/workflows/sync.yml
@@ -57,7 +57,7 @@ jobs:
57
id: pyver
58
shell: bash
59
run: |
60
- if [[ "${{ inputs.py_bin_ver }}" != '' ]]
+ if [[ "${{ inputs.py_bin_ver }}" != '' ]]; then
61
pyver=${{ inputs.py_bin_ver }}
62
else
63
pyver=$PYDOC_VERSION
@@ -80,7 +80,7 @@ jobs:
80
81
82
available=false
83
- [ "${{ secrets.TX_TOKEN }}" != '' ] && available=true
+ [[ "${{ secrets.TX_TOKEN }}" != '' ]] && available=true
84
echo "available=$available" >> $GITHUB_OUTPUT
85
echo "available=$available"
86
0 commit comments