From 11b3564d7c06916214b3448a7c01a1f1403f1f27 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Mon, 21 Jul 2025 09:28:39 +0200 Subject: [PATCH] workflows: drop `docker.yml` --- .github/workflows/docker.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/docker.yml diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml deleted file mode 100644 index 575db1c68..000000000 --- a/.github/workflows/docker.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Docker image - -on: - pull_request: {} - push: - branches: - - master - release: - types: - - published - -concurrency: - group: docker-${{ github.event_name == 'push' && github.sha || github.ref }} - cancel-in-progress: true - -jobs: - docker-release: - if: github.event_name == 'release' - concurrency: docker-release - runs-on: ubuntu-latest - - steps: - - name: Docker image - uses: Icinga/docker-icinga2@master - with: - dockerhub-token: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}' - - docker: - if: github.event_name != 'release' - runs-on: ubuntu-latest - - steps: - - name: Docker image - uses: Icinga/docker-icinga2@master - with: - dockerhub-token: '${{ secrets.DOCKER_HUB_PERSONAL_TOKEN }}'