Skip to content

chore(ci): only run interop tests on commits to master (#5604) #4631

chore(ci): only run interop tests on commits to master (#5604)

chore(ci): only run interop tests on commits to master (#5604) #4631

Workflow file for this run

name: Publish docker images
on:
push:
branches:
- 'master'
tags:
- 'libp2p-server-**'
jobs:
server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}-server
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./misc/server/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}