Skip to content

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.

Pushing the Docker image to DockerHub

# login
$ cat DOCKERHUB_ACCESS_TOKEN | docker login -u jonasbn --password-stdin

# Tag 
$ docker tag jonasbn/github-action-spellcheck:TAGNAME

# Push
$ docker push jonasbn/github-action-spellcheck:TAGNAME

Latest is not built automatically from master at this time.

Clone this wiki locally