mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
3 years ago
|
name: Aya test image
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "42 2 * * 0"
|
||
|
push:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
paths:
|
||
|
- 'images/**'
|
||
|
|
||
|
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:
|
||
|
path: ./images
|
||
|
file: Dockerfile.rtf
|
||
|
push: true
|
||
|
tags: ${{ steps.meta.outputs.tags }}
|
||
|
labels: ${{ steps.meta.outputs.labels }}
|