feat: add AVIF to list of supported formats #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker image | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: 'master' | |
- run: docker login ghcr.io -u $GITHUB_ACTOR -p ${{ secrets.TOKEN }} | |
- run: docker build -t ghcr.io/$GITHUB_ACTOR/pepic:latest . | |
- run: docker image push ghcr.io/$GITHUB_ACTOR/pepic:latest |