mirror of https://github.com/joan2937/pigpio
Use github actions to autobuild docker image
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
parent
d088a4b0f9
commit
668fca3b45
|
@ -0,0 +1,39 @@
|
|||
name: build docker image
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build images and push
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
||||
- name: install qemu
|
||||
run: docker run --rm --privileged hypriot/qemu-register
|
||||
|
||||
- name: checkout
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: login to docker hub
|
||||
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
||||
|
||||
- name: install buildx
|
||||
run: |
|
||||
mkdir -vp ~/.docker/cli-plugins/ ~/dockercache
|
||||
curl --silent -L "https://github.com/docker/buildx/releases/download/v0.3.0/buildx-v0.3.0.linux-amd64" > ~/.docker/cli-plugins/docker-buildx
|
||||
chmod a+x ~/.docker/cli-plugins/docker-buildx
|
||||
docker buildx create --use
|
||||
|
||||
- name: build image and push to hub
|
||||
if: github.ref == 'refs/heads/master'
|
||||
run: |
|
||||
docker buildx build --push \
|
||||
--platform linux/arm/v7,linux/arm64/v8 \
|
||||
-t $GITHUB_REPOSITORY:latest \
|
||||
.
|
||||
|
||||
- name: build image
|
||||
if: github.ref != 'refs/heads/master'
|
||||
run: |
|
||||
docker buildx build --platform linux/arm/v7,linux/arm64/v8 .
|
Loading…
Reference in New Issue