[UE5.5] Merge pull request #552 from mcottontensor/changesets #330
Workflow file for this run
This file contains hidden or 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: Check health of wilbur docker image | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - ".github/workflows/healthcheck-image-wilbur.yml" | |
| - "SignallingWebServer/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/healthcheck-image-wilbur.yml" | |
| - "SignallingWebServer/**" | |
| jobs: | |
| build-docker-image: | |
| if: github.repository == 'EpicGamesExt/PixelStreamingInfrastructure' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Build the wilbur container image | |
| uses: docker/build-push-action@v3 | |
| with: | |
| context: . | |
| push: false | |
| file: SignallingWebServer/Dockerfile | |