Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
1cbc3fa
1
Parent(s):
586c9e1
Create update-docker-readme.yml
Browse files
.github/workflows/update-docker-readme.yml
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: Update Docker Hub Description
|
| 2 |
+
|
| 3 |
+
on:
|
| 4 |
+
push:
|
| 5 |
+
branches:
|
| 6 |
+
- main
|
| 7 |
+
paths:
|
| 8 |
+
- README.md
|
| 9 |
+
- .github/workflows/update-docker-readme.yml
|
| 10 |
+
|
| 11 |
+
jobs:
|
| 12 |
+
build-image:
|
| 13 |
+
name: Build
|
| 14 |
+
runs-on: ubuntu-latest
|
| 15 |
+
|
| 16 |
+
steps:
|
| 17 |
+
- uses: actions/checkout@v2
|
| 18 |
+
|
| 19 |
+
- name: Docker Hub Description
|
| 20 |
+
uses: peter-evans/dockerhub-description@v2
|
| 21 |
+
with:
|
| 22 |
+
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
| 23 |
+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
| 24 |
+
repository: iamgojoof6eyes/Gojo_Satarou
|