mirror of
https://github.com/dockur/windows-arm.git
synced 2024-11-06 22:21:49 +00:00
990159fa4b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
24 lines
597 B
YAML
24 lines
597 B
YAML
name: Update
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- readme.md
|
|
- README.md
|
|
- .github/workflows/hub.yml
|
|
|
|
jobs:
|
|
dockerHubDescription:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
-
|
|
name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v4
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: ${{ secrets.DOCKERHUB_REPO }}
|
|
short-description: ${{ github.event.repository.description }}
|
|
readme-filepath: ./readme.md
|