diff --git a/.github/workflows/deploy_image.yml b/.github/workflows/deploy_image.yml index 8c3a8e8..779a78d 100644 --- a/.github/workflows/deploy_image.yml +++ b/.github/workflows/deploy_image.yml @@ -16,5 +16,7 @@ jobs: run: | export RELEASE=$(grep "MKDOCS_VERSION=" Dockerfile | sed 's|^.*=||g' |awk '{print $1}' | sed 's|"||g') docker build . --file Dockerfile --tag polinux/mkdocs:${RELEASE} + docker tag polinux/mkdocs:${RELEASE} polinux/mkdocs:latest docker login -u ${{ secrets.DOCKER_HUB_USER }} -p ${{ secrets.DOCKER_HUB_PASS }} - docker push polinux/mkdocs:${RELEASE} \ No newline at end of file + docker push polinux/mkdocs:${RELEASE} + docker push polinux/mkdocs:latest \ No newline at end of file