Skip to content

Commit

Permalink
Add workflow dispatch to DockerHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryoverload committed Dec 19, 2023
1 parent 8a20141 commit 1b2cc0a
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Update Docker Hub Description
on:
workflow_dispatch:
push:
branches:
- main
Expand All @@ -10,13 +11,13 @@ jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: binaryoverload/postgresql-client
short-description: ${{ github.event.repository.description }}
enable-url-completion: true
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: binaryoverload/postgresql-client
short-description: ${{ github.event.repository.description }}
enable-url-completion: true

0 comments on commit 1b2cc0a

Please sign in to comment.