Skip to content

Rename energomonitor to energostack #4

Rename energomonitor to energostack

Rename energomonitor to energostack #4

name: bisquitt docker
on:
push:
tags: [ "*" ]
jobs:
build-and-push-image:
name: Build and push a Docker image
runs-on: ubuntu-20.04
permissions:
packages: write
contents: read
attestations: write
id-token: write
steps:
- uses: actions/checkout@v2
with:
path: "go/src/github.com/energostack/bisquitt"
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io/energostack/bisquitt-psk
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
run: "make docker/build"
working-directory: "go/src/github.com/energostack/bisquitt"
- name: Push image
run: "make docker/push"
working-directory: "go/src/github.com/energostack/bisquitt"