Skip to content

Docker Image CI

Docker Image CI #928

name: Docker Image CI
on:
push:
branches:
- "master"
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 */24 * * *'
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Login to registry
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: docker/Dockerfile
platforms: linux/amd64
labels: quay.expires-after=24w
push: true
tags: quay.io/pussthecatorg/libretranslate:latest
build-args: release=1