From 3d5f2e90b683cac66ff2bf5d7a8639fa1a35d736 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 17 Oct 2021 20:42:17 +0200 Subject: [PATCH] Remove GitHub workflows for now --- .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