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 e10e52a commit 9826099Copy full SHA for 9826099
.github/workflows/sync.yml
@@ -64,7 +64,7 @@ jobs:
64
shell: bash
65
run: |
66
available=false
67
- [ "${{ secrets.TX_TOKEN }}" != '' ] && available=true
+ [[ "${{ secrets.TX_TOKEN }}" != '' ]] && available=true
68
echo "available=$available" >> $GITHUB_OUTPUT
69
echo "available=$available"
70
@@ -113,7 +113,7 @@ jobs:
113
powrap *.po **/*.po
114
115
- name: Update statistics
116
- if: always() && ${{ steps.secret-check.outputs.available != 'true' }}
+ if: always() && steps.secret-check.outputs.available == 'true'
117
118
python ./scripts/tx_stats.py > ./${{ env.LANGUAGE_DIR }}/stats.json
119
git -C ./${{ env.LANGUAGE_DIR }} diff stats.json
0 commit comments