use GitHub Actions to build the interop runner Docker image

This commit is contained in:
Marten Seemann
2020-08-11 18:02:03 +07:00
parent c978b6050c
commit 9b5391b771
2 changed files with 20 additions and 46 deletions

View File

@@ -0,0 +1,20 @@
name: Build interop Docker image
on:
push:
branches: [ interop ]
jobs:
interop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
with:
always_pull: true
path: interop/
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: martenseemann/quic-go-interop
tags: latest
tag_with_ref: true
add_git_labels: true