Skip to content

Commit

Permalink
Merge branch 'main' into feature/damian/kv_cache_bloom
Browse files Browse the repository at this point in the history
  • Loading branch information
dbogunowicz committed Jul 12, 2023
2 parents 6ad363c + 6e761ed commit 9c5e27d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build-and-publish-release-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,19 @@ jobs:
run: |
echo ${{ steps.extract_tag.outputs.tag }}
- name: Build and push sparseml with all dependencies and default cuda 11.1.1
- name: Build and push sparseml latest using default cuda 11.1.1
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/sparseml:latest
- name: Build and push sparseml with all dependencies and default cuda 11.1.1
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: docker/build-push-action@v2
with:
Expand All @@ -55,7 +67,7 @@ jobs:
tags: |
ghcr.io/neuralmagic/sparseml:${{ steps.extract_tag.outputs.tag }}
- name: Build and push sparseml with all dependencies and cuda 10.2
- name: Build and push sparseml with all dependencies and cuda 10.2
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
uses: docker/build-push-action@v2
with:
Expand Down

0 comments on commit 9c5e27d

Please sign in to comment.