Skip to content

Deployment: Fix stuck released/terminating volumes (#62) #47

Deployment: Fix stuck released/terminating volumes (#62)

Deployment: Fix stuck released/terminating volumes (#62) #47

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@7ca345011ac4304463197fac0e56eab1bc7e6af0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/checkout@v3
- 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