v3.4.0-beta1 #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Docker Build and Push (Slim) | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| release: | |
| types: [published] | |
| env: | |
| REGISTRY_DOCKERHUB: docker.io | |
| REGISTRY_GHCR: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| DOCKERHUB_NAMESPACE: ${{ secrets.DOCKERHUB_USERNAME != '' && secrets.DOCKERHUB_USERNAME || github.repository_owner }} | |
| jobs: | |
| build-and-push-slim: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Determine build settings | |
| id: build-config | |
| env: | |
| EVENT_NAME: ${{ github.event_name }} | |
| EVENT_ACTION: ${{ github.event.action }} | |
| run: | | |
| if [ "$EVENT_NAME" = "release" ] && [ "$EVENT_ACTION" = "published" ]; then | |
| echo "push=true" >> "$GITHUB_OUTPUT" | |
| echo "platforms=linux/amd64,linux/arm64" >> "$GITHUB_OUTPUT" | |
| echo "load=false" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "push=false" >> "$GITHUB_OUTPUT" | |
| echo "platforms=linux/amd64" >> "$GITHUB_OUTPUT" | |
| echo "load=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Derive image version | |
| id: version | |
| env: | |
| EVENT_NAME: ${{ github.event_name }} | |
| TAG_NAME: ${{ github.event.release.tag_name }} | |
| REF_NAME: ${{ github.ref_name }} | |
| GITHUB_SHA: ${{ github.sha }} | |
| run: | | |
| version="" | |
| if [ "$EVENT_NAME" = "release" ] && [ -n "$TAG_NAME" ]; then | |
| version="$TAG_NAME" | |
| elif [ -n "$REF_NAME" ]; then | |
| version="$REF_NAME" | |
| fi | |
| version="${version##*/}" | |
| if [ "${version#v}" != "$version" ]; then | |
| version="${version#v}" | |
| fi | |
| if [ -z "$version" ]; then | |
| version="${GITHUB_SHA:0:12}" | |
| fi | |
| if ! echo "$version" | grep -Eq '^[0-9]+\.[0-9]+\.[0-9]+'; then | |
| safe_branch=$(printf %s "$version" | tr -c 'A-Za-z0-9' '-') | |
| safe_branch=${safe_branch%-} | |
| if [ -z "$safe_branch" ]; then | |
| safe_branch="sha-${GITHUB_SHA:0:12}" | |
| fi | |
| version="0.0.0+${safe_branch}" | |
| fi | |
| echo "version=$version" >> "$GITHUB_OUTPUT" | |
| - name: Set up QEMU | |
| if: steps.build-config.outputs.platforms == 'linux/amd64,linux/arm64' | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| with: | |
| driver: docker-container | |
| - name: Login to Docker Hub | |
| if: steps.build-config.outputs.push == 'true' | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Login to GitHub Container Registry | |
| if: steps.build-config.outputs.push == 'true' | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY_GHCR }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata | |
| id: meta | |
| if: steps.build-config.outputs.push == 'true' | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| ${{ env.DOCKERHUB_NAMESPACE }}/ttsfm | |
| ${{ env.REGISTRY_GHCR }}/${{ env.IMAGE_NAME }} | |
| tags: | | |
| type=semver,pattern=v{{version}},suffix=-slim | |
| type=semver,pattern=v{{major}}.{{minor}},suffix=-slim,enable=${{ !contains(github.ref, 'alpha') && !contains(github.ref, 'beta') }} | |
| labels: | | |
| org.opencontainers.image.source=${{ github.repositoryUrl }} | |
| org.opencontainers.image.description=Free TTS API server compatible with OpenAI's TTS API format using openai.fm (slim variant without ffmpeg) | |
| org.opencontainers.image.licenses=MIT | |
| org.opencontainers.image.title=TTSFM - Free TTS API Server (Slim) | |
| org.opencontainers.image.vendor=dbcccc | |
| - name: Set local image metadata | |
| id: meta-local | |
| if: steps.build-config.outputs.push != 'true' | |
| run: | | |
| echo "tags=${{ env.REGISTRY_GHCR }}/${{ env.IMAGE_NAME }}:ci-${GITHUB_RUN_ID}-slim" >> "$GITHUB_OUTPUT" | |
| echo "labels=org.opencontainers.image.source=${{ github.repositoryUrl }}" >> "$GITHUB_OUTPUT" | |
| - name: Build and push image | |
| id: build-and-push | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| platforms: ${{ steps.build-config.outputs.platforms }} | |
| push: ${{ steps.build-config.outputs.push == 'true' }} | |
| load: ${{ steps.build-config.outputs.load == 'true' }} | |
| tags: ${{ steps.meta.outputs.tags || steps.meta-local.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels || steps.meta-local.outputs.labels }} | |
| cache-from: type=gha,scope=slim | |
| cache-to: type=gha,mode=max,scope=slim | |
| build-args: | | |
| VERSION=${{ steps.version.outputs.version }} | |
| VARIANT=slim | |
| - name: Smoke test image | |
| if: steps.build-config.outputs.load == 'true' | |
| run: | | |
| set -euo pipefail | |
| IMAGE="${{ steps.meta-local.outputs.tags }}" | |
| echo "Running smoke test for slim image: $IMAGE" | |
| docker rm -f ttsfm-smoke-slim >/dev/null 2>&1 || true | |
| docker run -d --name ttsfm-smoke-slim -p 127.0.0.1:8001:8000 "$IMAGE" | |
| success="" | |
| for attempt in $(seq 1 10); do | |
| if curl --fail --silent --max-time 5 http://127.0.0.1:8001/api/health > /tmp/ttsfm-health-slim.json; then | |
| success="yes" | |
| cat /tmp/ttsfm-health-slim.json | |
| break | |
| fi | |
| sleep 3 | |
| done | |
| docker logs ttsfm-smoke-slim || true | |
| docker rm -f ttsfm-smoke-slim >/dev/null 2>&1 || true | |
| if [ -z "$success" ]; then | |
| echo "Container health check failed" >&2 | |
| exit 1 | |
| fi | |
| - name: Show image info | |
| run: | | |
| echo "Variant: slim" | |
| echo "Push enabled: ${{ steps.build-config.outputs.push }}" | |
| echo "Image tags: ${{ steps.meta.outputs.tags || steps.meta-local.outputs.tags }}" | |
| echo "Image digest: ${{ steps.build-and-push.outputs.digest }}" | |