Skip to content

Merge branch 'master' into UE5.5 #11

Merge branch 'master' into UE5.5

Merge branch 'master' into UE5.5 #11

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 DockerHub
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.5'
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.5'
push: true
file: SFU/Dockerfile