name: Aya test image

on:
  schedule:
    - cron: "42 2 * * 0"
  push:
    branches:
      - 'main'
    paths:
      - 'images/**'
      - '.github/workflows/images.yml'
  pull_request:
    branches:
      - 'main'
    paths:
      - 'images/**'
      - '.github/workflows/images.yml'

env:
  REGISTRY: ghcr.io
  IMAGE_NAME: aya-rs/aya-test-rtf

jobs:
  rtf:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      packages: write

    steps:
      - uses: actions/checkout@v2

      - name: Log in to the Container registry
        uses: docker/login-action@v1
        with:
          registry: ${{ env.REGISTRY }}
          username: ${{ github.actor }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: Extract metadata (tags, labels) for Docker
        id: meta
        uses: docker/metadata-action@v3
        with:
          images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

      - name: Build and push Docker image
        uses: docker/build-push-action@v2
        with:
          context: images
          file: images/Dockerfile.rtf
          push: true
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}