Let's build everything via GitHub actions!

This commit is contained in:
Patrik Kernstock 2020-08-08 22:04:40 +01:00
parent 8f2bff1b9b
commit 0afad9d7d1
4 changed files with 29 additions and 9 deletions

View file

@ -0,0 +1,23 @@
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/
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: patschi/parsedmarc
tags: init
add_git_labels: true

View file

@ -1,4 +1,5 @@
name: container-build
name: Build parsedmarc container
on:
push:
paths: