Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add latest docker image #1113

Merged
merged 4 commits into from
Jul 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add support for building a latest docker image to GHA workflow file
  • Loading branch information
rahul-tuli committed Jul 11, 2023
commit b3d3ba39443e8a9719f4fcc14be210554f1cc348
12 changes: 12 additions & 0 deletions .github/workflows/build-and-publish-tagged-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ jobs:
run: |
echo ${{ steps.extract_tag.outputs.tag }}

- name: Build and push deepsparse latest with all dependencies
rahul-tuli marked this conversation as resolved.
Show resolved Hide resolved
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
Expand Down