2024-06-29 10:54:47 +00:00
|
|
|
# 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
|
2022-01-03 17:07:48 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master, main]
|
|
|
|
paths: ['README.md']
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker-hub-description:
|
|
|
|
name: Docker Hub Description
|
2023-02-23 17:50:20 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-01-03 17:07:48 +00:00
|
|
|
steps:
|
2023-10-09 12:46:36 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-01-03 17:07:48 +00:00
|
|
|
|
2024-06-29 10:54:47 +00:00
|
|
|
- uses: peter-evans/dockerhub-description@v4
|
2022-01-03 17:07:48 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_LOGIN }}
|
|
|
|
password: ${{ secrets.DOCKER_USER_PASSWORD }}
|
|
|
|
repository: tarampampam/error-pages
|