From 060380f0833fc8f16c31c030b5dfce6fee75519c Mon Sep 17 00:00:00 2001 From: Florian Hillebrand Date: Tue, 3 Jan 2023 20:23:51 +0100 Subject: [PATCH] Remove old workflows. --- .github/workflows/build-parsedmarc-init.yml | 23 ------------------- .github/workflows/build-parsedmarc.yml | 25 --------------------- 2 files changed, 48 deletions(-) delete mode 100644 .github/workflows/build-parsedmarc-init.yml delete mode 100644 .github/workflows/build-parsedmarc.yml diff --git a/.github/workflows/build-parsedmarc-init.yml b/.github/workflows/build-parsedmarc-init.yml deleted file mode 100644 index bb9fb01..0000000 --- a/.github/workflows/build-parsedmarc-init.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Build parsedmarc-init container - -on: - push: - paths: - - 'data/Dockerfiles/parsedmarc-init/**' - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Build and push Docker image - uses: docker/build-push-action@v1 - with: - path: data/Dockerfiles/parsedmarc-init/ - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - repository: patschi/parsedmarc - tags: init - add_git_labels: true diff --git a/.github/workflows/build-parsedmarc.yml b/.github/workflows/build-parsedmarc.yml deleted file mode 100644 index 6835c32..0000000 --- a/.github/workflows/build-parsedmarc.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Build parsedmarc container - -on: - push: - paths: - - 'data/Dockerfiles/parsedmarc/**' - schedule: - - cron: '0 0 14 * *' - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Build and push Docker image - uses: docker/build-push-action@v1 - with: - path: data/Dockerfiles/parsedmarc/ - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - repository: patschi/parsedmarc - tags: latest - add_git_labels: true