mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-16 21:56:43 -05:00
bfb3289bd5
- fix URL for CI badge in README - add actions workflow to push 'main' branch to 'latest' docker image
18 lines
368 B
YAML
18 lines
368 B
YAML
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
|