Skip to content

Zombie Detection I updated streamStore.js to detect "dead" FFmpeg pro… #69

Zombie Detection I updated streamStore.js to detect "dead" FFmpeg pro…

Zombie Detection I updated streamStore.js to detect "dead" FFmpeg pro… #69

Workflow file for this run

name: Docker Image CI
on:
push:
tags:
- "v*.*.*"
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
build:
runs-on: ubuntu-latest
steps:
# 1️⃣ Checkout code
- name: Checkout Repository
uses: actions/checkout@v6
# 2️⃣ Login to DockerHub
- name: Login to DockerHub
uses: docker/login-action@v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# 3️⃣ Setup Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
# 4️⃣ Extract tag version
- name: Extract version
id: version
run: |
VERSION=${GITHUB_REF#refs/tags/}
echo "version=$VERSION" >> $GITHUB_OUTPUT
# 5️⃣ Build & Push
- name: Build & Push Docker Image
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64
build-args: |
APP_VERSION=${{ steps.version.outputs.version }}
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/streamvision:${{ steps.version.outputs.version }}
${{ secrets.DOCKERHUB_USERNAME }}/streamvision:latest
cache-from: type=gha
cache-to: type=gha,mode=max