Skip to content

Commit 2202388

Browse files
committed
Don't use scoped GHA env var
1 parent 0a94952 commit 2202388

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ jobs:
2424
2525
- name: Run tests with make test
2626
run: |
27-
echo "VALEFILES=$(find -L ./docs/ -type d \( -path ./docs/plone.restapi/lib/* -o -path "./docs/plone.restapi/performance/*" \) -prune -false -o -type f -name "*.md" -print)" >> $GITHUB_ENV
28-
echo "${{ env.VALEFILES }}"
29-
make vale ${{ env.VALEFILES }}
27+
VALEFILES=$(find -L ./docs/ -type d \( -path ./docs/plone.restapi/lib/* -o -path "./docs/plone.restapi/performance/*" \) -prune -false -o -type f -name "*.md" -print)
28+
echo "$VALEFILES"
29+
make vale $VALEFILES

0 commit comments

Comments
 (0)