mirror of
https://github.com/kd9lsv/awesome-hamradio.git
synced 2024-11-16 17:11:48 -05:00
8ca40f7108
Update actions/upload-artifact action to v4
31 lines
691 B
YAML
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
|