-
Notifications
You must be signed in to change notification settings - Fork 41
Development
Jonas Brømsø edited this page Apr 9, 2022
·
17 revisions
The primary notes on development of this repository is included in the README. This page contains notes on tips and tricks for developing on the Spellcheck GitHub Action. I mostly write these for myself, since I forget the small things.
docker build -t jonasbn/github-action-spellcheck:latest .
When building on Apple silicon (M1), this additional parameter --platform
has to be specified and set to linux/amd64
docker build --platform linux/amd64 -t jonasbn/github-action-spellcheck:latest .
REF: Blog post: "Create docker image on Apple Silicon M1 Mac" by Lakhan Samani.
- GitHub Action that checks spelling for your Python, Markdown, and Text files