Added raspberry pi 5 info - unconfirmed #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker update description | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- README.md | |
- .github/workflows/docker_update_desc.yml | |
workflow_dispatch: | |
env: | |
# Image name at Docker Hub | |
IMAGE_NAME: zinen2/alpine-pigpiod | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Modify readme on Docker Hub | |
run: | | |
# Add link to this github repo as the title on Docker Hub | |
sed -i 's/# docker-alpine-pigpiod/# [alpine-pigpiod on github](https:\/\/github.com\/zinen\/docker-alpine-pigpiod)/' README.md | |
- name: Update repo description | |
uses: peter-evans/dockerhub-description@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
repository: ${{ env.IMAGE_NAME }} |