Deployment: Fix stuck released/terminating volumes (#62) #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |