2021-11-15 13:53:12 +00:00
|
|
|
name: Cloud Hypervisor's Docker image update
|
2020-09-25 17:20:11 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-08-24 13:16:57 +00:00
|
|
|
branches: main
|
2020-09-25 17:20:11 +00:00
|
|
|
paths: resources/Dockerfile
|
2021-10-15 07:07:57 +00:00
|
|
|
pull_request:
|
|
|
|
paths: resources/Dockerfile
|
2020-09-25 17:20:11 +00:00
|
|
|
|
|
|
|
jobs:
|
2020-09-28 11:49:07 +00:00
|
|
|
main:
|
2020-09-25 17:20:11 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- 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
|
2021-10-15 07:07:57 +00:00
|
|
|
if: ${{ github.event_name == 'push' }}
|
2020-09-25 17:20:11 +00:00
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build and push
|
2021-10-15 07:07:57 +00:00
|
|
|
if: ${{ github.event_name == 'push' }}
|
2020-09-25 17:20:11 +00:00
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
file: ./resources/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: cloudhypervisor/dev:latest
|
|
|
|
|
2021-10-15 07:07:57 +00:00
|
|
|
- name: Build only
|
|
|
|
if: ${{ github.event_name == 'pull_request' }}
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
file: ./resources/Dockerfile
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
tags: cloudhypervisor/dev:latest
|
|
|
|
|
2020-09-25 17:20:11 +00:00
|
|
|
- name: Image digest
|
|
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|