This repository has been archived by the owner on May 19, 2024. It is now read-only.
Bump moq-server from 75e7dc0
to ad5cc5d
#362
Workflow file for this run
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: Docker | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
# Cancel previous runs of the same workflow on the same branch. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-docker-relay: | |
name: Build moq-rs relay server | |
runs-on: ubuntu-latest | |
# defaults: | |
# run: | |
# working-directory: moq-server | |
steps: | |
- | |
name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- | |
name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./moq-server | |
file: moq-server/Dockerfile | |
push: false | |
load: true | |
tags: warp:relay |