2022-01-03 17:07:48 +00:00
|
|
|
name: documentation
|
|
|
|
|
|
|
|
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:
|
2022-03-02 03:38:28 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-03 17:07:48 +00:00
|
|
|
|
2022-04-01 07:48:54 +00:00
|
|
|
- uses: peter-evans/dockerhub-description@v3 # Action page: <https://github.com/peter-evans/dockerhub-description>
|
2022-01-03 17:07:48 +00:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_LOGIN }}
|
|
|
|
password: ${{ secrets.DOCKER_USER_PASSWORD }}
|
|
|
|
repository: tarampampam/error-pages
|