Skip to content

Commit

Permalink
improve workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pluja committed Oct 26, 2023
1 parent 47405be commit 58cefed
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 45 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/docker-image-gpu.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker Image CI
name: Whishper frontend and backend images

on:
release:
Expand All @@ -11,32 +11,42 @@ jobs:

strategy:
matrix:
directory: ['backend', 'frontend', 'transcription-api']
directory: ['backend', 'frontend']

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push Docker images
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: ${{ matrix.directory }}
file: ${{ matrix.directory }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ format('{0}/whishper-{1}:{2}', secrets.DOCKERHUB_USERNAME, matrix.directory, github.event.release.tag_name) }}
- name: Build and push Docker images
if: ${{ !github.event.release.prerelease }}
uses: docker/build-push-action@v5
with:
context: ${{ matrix.directory }}
file: ${{ matrix.directory }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
${{ format('{0}/whishper-{1}:latest', secrets.DOCKERHUB_USERNAME, matrix.directory) }}
45 changes: 45 additions & 0 deletions .github/workflows/docker-transcription-api-gpu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Docker Transcription-API GPU

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 Docker images
uses: docker/build-push-action@v5
with:
context: transcription-api
file: transcription-api/Dockerfile.gpu
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ format('{0}/whishper-transcription-api:{1}-gpu', secrets.DOCKERHUB_USERNAME, github.event.release.tag_name) }}

- name: Build and push Docker images as latest
if: ${{ !github.event.release.prerelease }}
uses: docker/build-push-action@v5
with:
context: transcription-api
file: transcription-api/Dockerfile.gpu
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ format('{0}/whishper-transcription-api:latest-gpu', secrets.DOCKERHUB_USERNAME) }}
45 changes: 45 additions & 0 deletions .github/workflows/docker-transcription-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Docker Transcription-API

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 Docker images
uses: docker/build-push-action@v5
with:
context: transcription-api
file: transcription-api/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ format('{0}/whishper-transcription-api:{1}', secrets.DOCKERHUB_USERNAME, github.event.release.tag_name) }}

- name: Build and push Docker images as latest
if: ${{ !github.event.release.prerelease }}
uses: docker/build-push-action@v5
with:
context: transcription-api
file: transcription-api/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ format('{0}/whishper-transcription-api:latest', secrets.DOCKERHUB_USERNAME) }}

0 comments on commit 58cefed

Please sign in to comment.