Skip to content

Commit

Permalink
Move DockerHub README update to main
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydrogers committed Oct 15, 2024
1 parent 143597b commit ac7a8bd
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/action_publish-images-dev-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,24 @@ jobs:
tag-prefix: ''
release-type: latest
authenticate_with_ghcr: false
secrets: inherit
secrets: inherit

update_container_readme:
runs-on: ubuntu-24.04
name: Push README to Docker Hub
steps:
- name: git checkout
uses: actions/checkout@v4
with:
ref: main

- name: push README to Dockerhub
uses: christian-korneck/update-container-description-action@v1
env:
DOCKER_USER: ${{ secrets.DOCKER_HUB_README_USERNAME }}
DOCKER_PASS: ${{ secrets.DOCKER_HUB_README_PASSWORD }}
with:
destination_container_repo: serversideup/php
provider: dockerhub
short_description: 'A simple and lightweight mkpasswd image based on Alpine. Great for generating password hashes.'
readme_file: 'README.md'

0 comments on commit ac7a8bd

Please sign in to comment.