Let's build everything via GitHub actions!
This commit is contained in:
parent
8f2bff1b9b
commit
0afad9d7d1
4 changed files with 29 additions and 9 deletions
23
.github/workflows/build-parsedmarc-init.yml
vendored
Normal file
23
.github/workflows/build-parsedmarc-init.yml
vendored
Normal 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
|
|
@ -1,4 +1,5 @@
|
|||
name: container-build
|
||||
name: Build parsedmarc container
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
Loading…
Add table
Add a link
Reference in a new issue