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