lychee/.github/workflows/docker.yml
2020-12-02 23:43:05 +01:00

21 lines
526 B
YAML

on:
push:
branches:
- master
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
name: Publish Docker Image
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@3.01
with:
name: lycheeverse/lychee
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
snapshot: true
tag_semver: true