diff --git a/.github/workflows/build-and-publish-tagged-images.yaml b/.github/workflows/build-and-publish-tagged-images.yaml index 27d010a8e0..4a2b0f3116 100644 --- a/.github/workflows/build-and-publish-tagged-images.yaml +++ b/.github/workflows/build-and-publish-tagged-images.yaml @@ -43,7 +43,19 @@ jobs: run: | echo ${{ steps.extract_tag.outputs.tag }} - - name: Build and push deepsparse with all dependencies + - name: Build and push deepsparse latest with all dependencies + if: ${{ startsWith(github.ref, 'refs/tags/v') }} + uses: docker/build-push-action@v2 + with: + context: ./docker + build-args: | + DEPS=all + VERSION=${{ steps.extract_tag.outputs.tag }} + push: true + tags: | + ghcr.io/neuralmagic/deepsparse:latest + + - name: Build and push deepsparse with all dependencies if: ${{ startsWith(github.ref, 'refs/tags/v') }} uses: docker/build-push-action@v2 with: