mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-30 22:34:18 -05:00
18 lines
360 B
YAML
18 lines
360 B
YAML
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
|