This repository was archived by the owner on Feb 22, 2026. It is now read-only.
chore(update): Cloudflared v2025.9.0 + golang v1.25.1 #73
Workflow file for this run
This file contains hidden or 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-hub-description | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| workflow_call: | |
| secrets: | |
| DOCKERHUB_TOKEN: | |
| required: true | |
| env: | |
| DOCKERHUB_USERNAME: ${{ vars.DOCKERHUB_USERNAME }} | |
| DOCKERHUB_REPOSITORY: ${{ vars.DOCKERHUB_REPOSITORY }} | |
| jobs: | |
| update: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Update docker hub description | |
| uses: peter-evans/dockerhub-description@v4 | |
| with: | |
| username: ${{ env.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| repository: ${{ github.repository_owner }}/${{ env.DOCKERHUB_REPOSITORY }} | |
| short-description: ${{ github.event.repository.description }} |