awesome-hamradio/.github/workflows/spellcheck.yaml
Hendrik 8ca40f7108
Merge pull request #17 from DD5HT/renovate/major-github-artifact-actions
Update actions/upload-artifact action to v4
2024-04-02 09:16:13 +02:00

31 lines
691 B
YAML

name: Spellcheck Action
on:
push:
branches:
- 'main'
- 'master'
pull_request:
types: [open,reopened,edited]
workflow_dispatch:
jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
# The checkout step
- uses: actions/checkout@v4
- uses: rojopolis/spellcheck-github-actions@v0
name: Spellcheck
with:
source_files: README.md
task_name: Markdown
config_path: .github/config/.spellcheck.yaml
output_file: spellcheck-output.txt
- uses: actions/upload-artifact@v4
name: Archive spellcheck output
with:
name: Spellcheck artifact
path: spellcheck-output.txt