Skip to content

fix(deps): update module google.golang.org/protobuf to v1.36.2 (#60) #54

fix(deps): update module google.golang.org/protobuf to v1.36.2 (#60)

fix(deps): update module google.golang.org/protobuf to v1.36.2 (#60) #54

Workflow file for this run

name: DockerPush
# TODO this workflow is a temporary measure, remove it once CI release workflow is in place.
on:
workflow_dispatch: # Let's us invoke the workflow manually
push:
branches:
- 'main'
jobs:
docker-push:
runs-on: ubuntu-latest
steps:
- name: Log in to Docker Hub
uses: docker/login-action@327cd5a69de6c009b9ce71bce8395f28e651bf99
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v4
- run: make go.mk
- uses: ./go.mk/.github/actions/setup
- name: Build Docker image
run: make docker
- name: Push Docker image
run: make docker-push