Add build docker images workflow

This commit is contained in:
2022-05-05 13:57:38 +01:00
committed by GitHub
parent 662411a03e
commit ad84d9129f

View File

@@ -0,0 +1,32 @@
name: ci
on:
push:
branches:
- "master"
tags:
- "[0-9]+.[0-9]+.[0-9]+"
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 GHCR
uses: docker/login-action@v1
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/aaisp2mqtt:${{ github.ref_name }}
ghcr.io/${{ github.repository_owner }}/aaisp2mqtt:latest