mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
action to update dockerhub description
This commit is contained in:
parent
89d74c566c
commit
46cabff79a
1 changed files with 23 additions and 0 deletions
23
.github/workflows/dockerhub_description.yml
vendored
Normal file
23
.github/workflows/dockerhub_description.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Update DockerHub description
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- 'DOCKERHUB.md'
|
||||
|
||||
jobs:
|
||||
update_docker_description:
|
||||
name: Update DockerHub description
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: DockerHub Description
|
||||
uses: peter-evans/dockerhub-description@v2.0.0
|
||||
env:
|
||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
||||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
||||
DOCKERHUB_REPOSITORY: gotson/komga
|
||||
README_FILEPATH: ./DOCKERHUB.md
|
||||
Loading…
Reference in a new issue