Skip to content

feat(actions): Add spellcheck GitHub action #3

feat(actions): Add spellcheck GitHub action

feat(actions): Add spellcheck GitHub action #3

Workflow file for this run

name: Publish Dragonfly Wiki to GitHub Pages
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
- name: Get all changed markdown files

Check failure on line 10 in .github/workflows/retype-action.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/retype-action.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
uses: tj-actions/changed-files@v45
id: changed_files
with:
files: |
**.md
- name: Run Spellcheck
id: spellcheck
uses: rojopolis/spellcheck-github-actions@v0
with:
task_name: Markdown
source_files: ${{ steps.changed_files.outputs.all_changed_files }}
publish:
name: Publish to retype branch
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- uses: retypeapp/action-build@latest
- uses: retypeapp/action-github-pages@latest
with:
update-branch: true