Skip to content

Add mariadb and generic backup image #8

Add mariadb and generic backup image

Add mariadb and generic backup image #8

name: Update Docker Hub Description
on:
workflow_dispatch:
push:
branches:
- main
paths:
- README.md
- .github/workflows/dockerhub-description.yml
jobs:
dockerHubDescription:
runs-on: ubuntu-latest
strategy:
matrix:
package: [postgresql-client, mariadb-client]
include:
- package: postgresql-client
description: A PostgreSQL client image with built-in file transfer and backup tools.
readme: ./postgres/README.md
- package: mariadb-client
description: A MariaDB client image with built-in file transfer and backup tools.
readme: ./mariadb/README.md
steps:
- uses: actions/checkout@v4
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: binaryoverload/${{ matrix.package }}
short-description: ${{ matrix.description }}
readme-filepath: ${{ matrix.readme }}
enable-url-completion: true