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

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

View file

@ -1,18 +0,0 @@
on:
push:
branches:
- 'main'
name: docker-publish-latest
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
tags: latest

View file

@ -1,5 +1,7 @@
on: on:
push: push:
branches:
- 'main'
tags: tags:
- '*' - '*'
name: docker-publish-tags name: docker-publish-tags