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 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

Publishing to the GitHub Marketplace

The publishing proces is completed using the release proces on GitHub, so first you tag the repository and then you outline the release.

Clone this wiki locally