We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1a37e commit fd93febCopy full SHA for fd93feb
.github/workflows/dockerhub-description.yml
@@ -0,0 +1,20 @@
1
+name: Update Docker Hub Description
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ paths:
7
+ - README.md
8
+ - .github/workflows/dockerhub-description.yml
9
+jobs:
10
+ dockerHubDescription:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Docker Hub Description
15
+ uses: peter-evans/dockerhub-description@v3
16
+ with:
17
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
18
+ password: ${{ secrets.DOCKERHUB_PASSWORD }}
19
+ repository: lintoai/linto-platform-nlp-extractive-summarization
20
+ readme-filepath: ./README.md
0 commit comments