Skip to content

Commit

Permalink
fix: find files
Browse files Browse the repository at this point in the history
  • Loading branch information
Molaryy committed Oct 26, 2024
1 parent 433f13e commit 0fda897
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Find Markdown files
id: find_markdown
run: |
echo "files=$(find . -type f -name '*.md')" >> $GITHUB_ENV
- name: Spell checker
uses: rojopolis/spellcheck-github-actions@v0
with:
source_files: $(find . -type f -name "*.md" -print)
source_files: ${{ env.files }}
task_name: Markdown

0 comments on commit 0fda897

Please sign in to comment.