mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
23 lines
623 B
YAML
23 lines
623 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
# docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
|
|
|
|
name: 📚 Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [master, main]
|
|
paths: ['README.md']
|
|
|
|
jobs:
|
|
docker-hub-description:
|
|
name: Docker Hub Description
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: peter-evans/dockerhub-description@v4
|
|
with:
|
|
username: ${{ secrets.DOCKER_LOGIN }}
|
|
password: ${{ secrets.DOCKER_USER_PASSWORD }}
|
|
repository: tarampampam/error-pages
|