Skip to content

Add integration with MQTT for GRDF #6

Add integration with MQTT for GRDF

Add integration with MQTT for GRDF #6

---
name: Docker Image CI
# yamllint disable-line rule:truthy
on:
push:
branches: [meters-to-ha]
pull_request:
branches: [meters-to-ha]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
# Production versions
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ github.repository }}:latest