github workflow automaticaly build images for mayor platforms #13
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi, the workflow is inspired by https://github.com/dersimn/HelloARM/blob/github-workflow/.github/workflows/docker.yml
It automatically builds latest and a tagged image for the linux platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
Would be quiet handy for people using raspberry pi ;-)
You need to create three secrets in your github repository settings:
DOCKERHUB_USERNAME your docker hub account
DOCKERHUB_TOKEN you can get the token in your docker hub account
DOCKERHUB_IMAGE name of you image e.g. sglahn/platformio-core
Usage
create a new release with the version 5.1.1 and the action should start and push the DOCKERHUB_IMAGE:latest and the DOCKERHUB_IMAGE:5.1.1 automatically. It is not run when you just push to master.
Best Christian