Skip to content

Fix missing package in requirements.txt (#12) #12

Fix missing package in requirements.txt (#12)

Fix missing package in requirements.txt (#12) #12

Workflow file for this run

name: Build and publish
on:
push:
branches: [ master ]
jobs:
publish-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build and publish docker image
run: |
echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u "${{ secrets.DOCKER_HUB_USERNAME }}" --password-stdin docker.io
make publish -e TAG="docker.io/${{ secrets.DOCKER_HUB_USERNAME }}/${{ secrets.DOCKER_HUB_REPOSITORY }}:latest"