Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/docker-description.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Update Docker Hub Description

on:
push:
branches: [main]
paths:
- 'README.md'
- '.github/workflows/docker-description.yml'

jobs:
docker-description:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Update Docker Hub description
uses: peter-evans/dockerhub-description@v3
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: maateen/docker-beanstalkd
short-description: "A Docker container for Beanstalkd, a simple and fast general-purpose work queue."
readme-filepath: ./README.md
1 change: 1 addition & 0 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push by digest
id: build
uses: docker/build-push-action@v6
with:
build-args: |
Expand Down
Loading