0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2025-01-20 22:53:00 -05:00

actions: publish docker images on new git tags

This commit is contained in:
Will Norris 2020-04-04 03:35:08 +00:00
parent 72ba50b8ce
commit 65aeb787ac

18
.github/workflows/docker.yml vendored Normal file
View file

@ -0,0 +1,18 @@
on:
push:
tags:
- '*'
name: docker-publish
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: willnorris/imageproxy
tag_with_ref: true