feat: streaming api
All checks were successful
Build container / build-docker (push) Successful in 17m34s

This commit is contained in:
vera
2026-04-22 18:33:08 +08:00
parent c17a131fe0
commit 42eb035f4b
8 changed files with 7025 additions and 2 deletions

31
.github/workflows/docker-build.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Build container
env:
VERSION: 0.0.1
REGISTRY: https://harbor.bwgdi.com
REGISTRY_NAME: harbor.bwgdi.com
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-docker:
runs-on: builder-ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.BWGDI_NAME }}
password: ${{ secrets.BWGDI_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ env.REGISTRY_NAME }}/library/qwen3-asr:${{ env.VERSION }}