spellcheck-github-actions
spellcheck-github-actions copied to clipboard
Implement automation of build and release process
:abc: User Story
As a maintainer I can build a Docker image automatically and have it uploaded to a container registry so that I can make sure that it is built on a compatible platform
:information_source: Notes
- Issue #79 demonstrated that it is better to have a automated build and release process to eliminate human error, in this case the human error was that the Docker image was build on a incompatible architecuture
- Container registries could be one of:
- DockerHub (currently uses)
- GitHub Container Registry, ghcr for short
- I is expected that at secret token is requested by the container registry chosen
- This has tp be configured for the GitHub repository, this can be problematic since the repository is owned by somebody else than the current maintainer
- Automated build is already in place, see:
docker-build.yml
:ok: Acceptance Criteria
- [ ] I can build automatically
- [ ] I can push to a container registry
- [ ] the built image is compatible with GitHub Actions
:arrow_right: Resources and References
- N/A
@jonasbn I just added a PR #108 that may help to fix this issue, don't know if it what you have on your mind, hope it will help.
On the other hand, will also add support for arm64 since I wanted to run the image on my raspberrypi but I wasn't able to do it
Hi @sxd
Thank you, I will have a look at it over the weekend.
Hi @jonasbn
Awesome!! I'll be waiting your feedback and requests!
Regards!