Moved docker build to github actions, enabling multi-arch support

This commit is contained in:
Alejandro Celaya
2020-09-19 16:23:39 +02:00
parent 46db1e39f3
commit 9001a3da37
4 changed files with 46 additions and 48 deletions

View File

@@ -0,0 +1,24 @@
name: Build docker image
on:
push:
branches:
- develop
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
buildx-version: latest
- name: Login to docker hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build the image
run: bash ./scripts/docker/build