mirror of
https://github.com/buanet/ioBroker.docker.git
synced 2025-12-17 10:29:00 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
name: Update Docker Hub Readme
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'docs/**'
|
|
- '.github/workflows/update-docker-readme.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-docker-readme:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.1.1
|
|
|
|
- name: Update Docker Hub Readme (buanet)
|
|
uses: peter-evans/dockerhub-description@v3.4.2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASS }}
|
|
repository: buanet/iobroker
|
|
short-description: Official Docker image for ioBroker based on Debian Bullseye slim
|
|
readme-filepath: ./docs/README_docker_hub_buanet.md
|
|
|
|
- name: Update Docker Hub Readme (iobroker)
|
|
uses: peter-evans/dockerhub-description@v3.4.2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER_IOB }}
|
|
password: ${{ secrets.DOCKER_PASS_IOB }}
|
|
repository: iobroker/iobroker
|
|
short-description: Official Docker image for ioBroker based on Debian Bullseye slim
|
|
readme-filepath: ./docs/README_docker_hub_iobroker.md |