Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a5e5e61

Browse files
committed
Oh it's env here.
1 parent ff76de7 commit a5e5e61

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
sudo apt-get install -y hunspell hunspell-fr-comprehensive
2929
sudo python3 -m pip install pospell
3030
- name: Run pospell
31-
with:
32-
ADDED_FILES: '${{ join(fromJSON(steps.changed_files.outputs.added), '' '') }}'
33-
MODIFIED_FILES: '${{ join(fromJSON(steps.changed_files.outputs.modified), '' '') }}'
31+
env:
32+
ADDED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.added), ' ') }}
33+
MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }}
3434
run: |
3535
CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$')
3636
[ -n "$CHANGED_PO_FILES" ] && pospell -p dict -l fr_FR $CHANGED_PO_FILES

0 commit comments

Comments
 (0)