update ci to build and gpu docker image to ghcr

This commit is contained in:
makaveli10
2024-02-19 04:53:39 -05:00
parent d1de4948ee
commit 0baa1dc0a6
+26 -1
View File
@@ -76,7 +76,7 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
build-and-push-docker: build-and-push-docker-cpu:
needs: [run-tests, check-code-format] needs: [run-tests, check-code-format]
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
if: github.event_name == 'push' && github.ref == 'refs/heads/develop' if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
@@ -100,6 +100,31 @@ jobs:
file: docker/Dockerfile.cpu file: docker/Dockerfile.cpu
push: true push: true
tags: ghcr.io/makaveli10/whisperlive-cpu:latest tags: ghcr.io/makaveli10/whisperlive-cpu:latest
build-and-push-docker-gpu:
needs: [run-tests, check-code-format]
runs-on: ubuntu-22.04
if: github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main')
steps:
- uses: actions/checkout@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push Docker GPU image
uses: docker/build-push-action@v2
with:
context: .
file: docker/Dockerfile.gpu
push: true
tags: ghcr.io/makaveli10/whisperlive-gpu:latest
publish-to-pypi: publish-to-pypi:
needs: [run-tests, check-code-format] needs: [run-tests, check-code-format]