actions: combine docker workflows

This commit is contained in:
Will Norris 2021-10-12 20:48:18 -07:00
parent d9b179c9d1
commit 3dd327fafc
2 changed files with 2 additions and 18 deletions

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

@ -0,0 +1,31 @@
on:
push:
branches:
- 'main'
tags:
- '*'
name: docker-publish-tags
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: docker/metadata-action@v3
id: meta
with:
images: willnorris/imageproxy
- uses: docker/build-push-action@v1
with:
context: .
push: true
tags: ${{ steps.meta.output.tags }}
labels: ${{ steps.meta.output.labels }}