This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
Touching files to check the actions get triggered. #39
This file contains 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: Publish Cirrus container | |
on: | |
push: | |
workflow_dispatch: | |
branches: ['UE5.5'] | |
paths: ['SignallingWebServer/**'] | |
jobs: | |
signalling-server-image: | |
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: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build and push the Signalling Server container image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
tags: 'ghcr.io/epicgames/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: 'ghcr.io/epicgames/pixel-streaming-sfu:5.5' | |
push: true | |
file: SFU/Dockerfile | |