mirror of
https://github.com/directus/directus.git
synced 2026-01-29 12:08:07 -05:00
25 lines
580 B
YAML
25 lines
580 B
YAML
name: Sync Readme to Docker Hub
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- readme.md
|
|
- .github/workflows/sync-dockerhub-readme.yml
|
|
|
|
jobs:
|
|
sync-dockerhub-readme:
|
|
name: Sync Readme to Docker Hub
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Sync Readme to Docker Hub
|
|
uses: peter-evans/dockerhub-description@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
readme-filepath: ./readme.md
|