1
0
mirror of synced 2026-03-10 04:23:39 +00:00

Initial commit of amcrest2mqtt code

This commit is contained in:
Daniel Chesterton
2021-02-08 20:05:26 +00:00
parent 138d731260
commit 7fe314614d
6 changed files with 294 additions and 0 deletions

24
.github/workflows/publish.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Publish
on:
push:
branches:
- main
jobs:
docker-publish:
name: Publish to Docker Hub
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: dchesterton/amcrest2mqtt:latest