Skip to content

Fix the issue with domain filter where searching for another domain doesn't clear the previous one #333

Fix the issue with domain filter where searching for another domain doesn't clear the previous one

Fix the issue with domain filter where searching for another domain doesn't clear the previous one #333

Workflow file for this run

name: Docker build & push
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "*"
pull_request:
jobs:
docker:
name: Docker Images
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
id: docker-meta
with:
images: ghcr.io/${{ github.repository }}
tags: type=raw,value=latest
- uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker-meta.outputs.tags }}
labels: ${{ steps.docker-meta.outputs.labels }}