From 4197737f174791d704359b85600691f3cf49c675 Mon Sep 17 00:00:00 2001 From: pluja Date: Tue, 21 Nov 2023 17:42:33 +0100 Subject: [PATCH] chore: Add Docker image workflows for GPU and CPU --- .github/workflows/docker-image-gpu.yml | 51 +++++++++++++++++++ .github/workflows/docker-image.yml | 51 +++++++++++++++++++ .../{docker-images.yml => docker-images.off} | 0 ...u.yml => docker-transcription-api-gpu.off} | 0 ...n-api.yml => docker-transcription-api.off} | 0 5 files changed, 102 insertions(+) create mode 100644 .github/workflows/docker-image-gpu.yml create mode 100644 .github/workflows/docker-image.yml rename .github/workflows/{docker-images.yml => docker-images.off} (100%) rename .github/workflows/{docker-transcription-api-gpu.yml => docker-transcription-api-gpu.off} (100%) rename .github/workflows/{docker-transcription-api.yml => docker-transcription-api.off} (100%) diff --git a/.github/workflows/docker-image-gpu.yml b/.github/workflows/docker-image-gpu.yml new file mode 100644 index 0000000..6524b91 --- /dev/null +++ b/.github/workflows/docker-image-gpu.yml @@ -0,0 +1,51 @@ +name: Whishper GPU Docker Image + +on: + release: + types: [published] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push Release Docker images + uses: docker/build-push-action@v5 + if: ${{ !github.event.release.prerelease }} + with: + context: . + file: ./Dockerfile.gpu + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ${{ format('{0}/whishper:{1}-gpu', secrets.DOCKERHUB_USERNAME, github.event.release.tag_name) }} + ${{ format('{0}/whishper:latest-gpu', secrets.DOCKERHUB_USERNAME) }} + + - name: Build and push Prerelease Docker images + uses: docker/build-push-action@v5 + if: ${{ github.event.release.prerelease }} + with: + context: . + file: ./Dockerfile.gpu + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ${{ format('{0}/whishper:{1}-gpu', secrets.DOCKERHUB_USERNAME, github.event.release.tag_name) }} + + diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..fa7a6f1 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,51 @@ +name: Whishper CPU Docker Image + +on: + release: + types: [published] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to DockerHub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push Release Docker images + uses: docker/build-push-action@v5 + if: ${{ !github.event.release.prerelease }} + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ${{ format('{0}/whishper:{1}', secrets.DOCKERHUB_USERNAME, github.event.release.tag_name) }} + ${{ format('{0}/whishper:latest', secrets.DOCKERHUB_USERNAME) }} + + - name: Build and push Prerelease Docker images + uses: docker/build-push-action@v5 + if: ${{ github.event.release.prerelease }} + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm64 + push: true + tags: | + ${{ format('{0}/whishper:{1}', secrets.DOCKERHUB_USERNAME, github.event.release.tag_name) }} + + diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.off similarity index 100% rename from .github/workflows/docker-images.yml rename to .github/workflows/docker-images.off diff --git a/.github/workflows/docker-transcription-api-gpu.yml b/.github/workflows/docker-transcription-api-gpu.off similarity index 100% rename from .github/workflows/docker-transcription-api-gpu.yml rename to .github/workflows/docker-transcription-api-gpu.off diff --git a/.github/workflows/docker-transcription-api.yml b/.github/workflows/docker-transcription-api.off similarity index 100% rename from .github/workflows/docker-transcription-api.yml rename to .github/workflows/docker-transcription-api.off