-
Notifications
You must be signed in to change notification settings - Fork 41
Development
Jonas Brømsø edited this page Oct 18, 2020
·
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 cannot always remember all the small things.
# login
$ cat DOCKERHUB_ACCESS_TOKEN | docker login -u jonasbn --password-stdin
# Tag
$ docker tag jonasbn/github-action-spellcheck jonasbn/github-action-spellcheck:TAGNAME
# Push
$ docker push jonasbn/github-action-spellcheck:TAGNAME
latest
is not built automatically at this time, so remember to tag and push latest
also.
# Push
$ docker push jonasbn/github-action-spellcheck:latest
The publishing proces is completed using the release proces on GitHub, so first you tag the repository and then you outline the release.
- GitHub Action that checks spelling for your Python, Markdown, and Text files