Skip to content

fix(deps): update module golang.org/x/sys to v0.30.0 (#77) #76

fix(deps): update module golang.org/x/sys to v0.30.0 (#77)

fix(deps): update module golang.org/x/sys to v0.30.0 (#77) #76

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/#-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