Commit 65cbcced authored by Waqar Ahmed's avatar Waqar Ahmed Committed by Ryan Moeller
Browse files

Add action to build and push docker image on master update

Signed-off-by: default avatarWaqar Ahmed <waqarahmedjoyia@live.com>
Showing with 28 additions and 0 deletions
+28 -0
name: build_image
on:
push:
branches:
- 'truenas/zfs-2.1-release'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ixsystems/zfs:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment