0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2025-03-11 02:19:14 -05:00

actions: update docker workflow

This commit is contained in:
Will Norris 2021-10-12 20:39:23 -07:00
parent e5da3b920b
commit 7aacb8b520

View file

@ -10,9 +10,20 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
- uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: willnorris/imageproxy
tag_with_ref: true
- 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 }}