Remove GitHub workflows for now

This commit is contained in:
Manuel 2021-10-17 20:42:17 +02:00
parent dd4bbc4b22
commit 3d5f2e90b6
Signed by: SunRed
GPG Key ID: 4085037435E1F07A
2 changed files with 0 additions and 48 deletions

View File

@ -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

View File

@ -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