Create docker-publish.yml

This commit is contained in:
vabene1111 2020-03-24 18:04:52 +01:00 committed by GitHub
parent ed360ca1c7
commit 574d088cdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
.github/workflows/docker-publish.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: Publish Docker
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@2.13
with:
name: vabene1111/recipes
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}