Skip to content

Fixing deps of SS and Test #5

Fixing deps of SS and Test

Fixing deps of SS and Test #5

name: Publish container images
on:
workflow_dispatch:
push:
branches: ['UE5.5']
paths: ['SignallingWebServer/**']
jobs:
signalling-server-image:
if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure'
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
username: pixelstreamingunofficial
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push the Signalling Server container image
uses: docker/build-push-action@v3
with:
context: .
tags: 'pixelstreamingunofficial/pixel-streaming-signalling-server:5.4'
push: true
file: SignallingWebServer/Dockerfile
-
name: Build and push the SFU container image
uses: docker/build-push-action@v3
with:
context: .
tags: 'pixelstreamingunofficial/pixel-streaming-sfu:5.4'
push: true
file: SFU/Dockerfile