mirror of
https://github.com/eduardolat/pgbackweb.git
synced 2026-05-05 19:19:26 -05:00
25 lines
511 B
YAML
25 lines
511 B
YAML
name: Sync Docker Hub README
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- README.md
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
run_sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Sync Docker Hub README
|
|
uses: ms-jpq/sync-dockerhub-readme@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USER }}
|
|
password: ${{ secrets.DOCKERHUB_PASS }}
|
|
repository: eduardolat/pgbackweb
|
|
readme: "./README.md"
|