Skip to content

Create an abstract QmuxTransport #125

Create an abstract QmuxTransport

Create an abstract QmuxTransport #125

# Following instruction from https://docs.github.com/en/actions/publishing-packages/publishing-docker-images
name: Publish mvfst interop image
on:
push:
tags:
# Build a new image weekly with each TagIt release
- 'v20*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}/mvfst-interop
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Log in to the Container registry
uses: docker/login-action@abd2ef45e78c5afb21d64d4ca52ee8550d9572c7
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a
with:
context: .
file: proxygen/httpserver/samples/hq/quic-interop/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}