Skip to content

Update version.txt to 0.7.0 #3

Update version.txt to 0.7.0

Update version.txt to 0.7.0 #3

name: bisquitt docker
on:
push:
tags: [ "*" ]
jobs:
build-and-push-image:
name: Build and push a Docker image
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
path: "go/src/github.com/energomonitor/bisquitt"
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build image
run: "make docker/build"
working-directory: "go/src/github.com/energomonitor/bisquitt"
- name: Push image
run: "make docker/push"
working-directory: "go/src/github.com/energomonitor/bisquitt"