Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.

fix(sfu): prevent repeated ICE restarts for same consumer stall #61

fix(sfu): prevent repeated ICE restarts for same consumer stall

fix(sfu): prevent repeated ICE restarts for same consumer stall #61

Workflow file for this run

name: Build and Push SFU server image

Check failure on line 1 in .github/workflows/build-sfu.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-sfu.yml

Invalid workflow file

(Line: 10, Col: 5): you may only define one of `paths` and `paths-ignore` for a single event
on:
push:
branches:
- develop
paths:
- "sfu-server/**"
- "types/**"
paths-ignore:
- "sfu-server/src/**/__tests__/**"
- "sfu-server/src/**/*.test.ts"
- "sfu-server/**/*.md"
- "sfu-server/.vscode/**"
- "sfu-server/.env*"
- "sfu-server/.venv/**"
workflow_dispatch:
inputs:
tag:
description: "Image tag (default: latest)"
required: false
default: "latest"
env:
REGISTRY: ghcr.io
IMAGE_NAME: frappe/meet/sfu-server
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=raw,value=${{ github.event.inputs.tag || 'latest' }},enable=${{ github.event_name == 'workflow_dispatch' }}
type=sha,prefix=,format=short
type=ref,event=branch
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./sfu-server/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max