Skip to content

Remove multi tenant feature and add make method and body configurable #15

Remove multi tenant feature and add make method and body configurable

Remove multi tenant feature and add make method and body configurable #15

Workflow file for this run

name: Build and tests
on:
push:
branches:
- "**"
tags-ignore:
- "*"
jobs:
docker:
name: Docker build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/daniel-lerch/dyndns-distributor
tags: |
type=ref,event=branch
type=ref,event=pr
- name: Login to GitHub Container Registry
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}