Files
bibreminder/.github/workflows/dockerimage.yml
Matthias Bilger 1696553bba
All checks were successful
continuous-integration/drone/push Build is passing
fixed secret
2020-01-19 05:03:36 +01:00

25 lines
560 B
YAML

name: Docker Image CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
- name: Docker Publish
uses: manusa/actions-publish-docker@v1.0.1
with:
# Name of the Docker image
name: m42e/bibreminder
# Username for Docker registry
username: ${{ secrets.Dockeruser }}
# Password for Docker registry
password: ${{ secrets.Dockertoken }}