github workflow automaticaly build images for mayor platforms#13
Open
lazyzero wants to merge 3 commits intosglahn:masterfrom
Open
github workflow automaticaly build images for mayor platforms#13lazyzero wants to merge 3 commits intosglahn:masterfrom
lazyzero wants to merge 3 commits intosglahn:masterfrom
Conversation
…r images to dockerhub
replacing docker image name by secret to make it generic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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