Skip to content

Commit

Permalink
Fix syntax error in CI workflow for conditional espeak-ng data upload
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Jan 5, 2025
1 parent 8b8a50c commit ead7862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
run: |
latestTag=$(gh release view --json tagName --jq '.tagName')
gh release upload $latestTag ${{ matrix.archive }} --clobber
if [[ -f espeak-ng-data.tar.gz ]]
if [[ -f espeak-ng-data.tar.gz ]]; then
gh release upload $latestTag espeak-ng-data.tar.gz --clobber
fi
env:
Expand Down

0 comments on commit ead7862

Please sign in to comment.