3261.v9c670a_4748a_9-3 #30
Workflow file for this run
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: Update Docker Hub Description | |
on: | |
release: | |
types: [ published ] | |
workflow_dispatch: | |
jobs: | |
dockerHubDescription: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Docker Hub description for agent | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
enable-url-completion: true | |
short-description: This is a base image, which provides the Jenkins agent executable (agent.jar) | |
repository: jenkins/agent | |
readme-filepath: ./README_agent.md | |
- name: Update Docker Hub description for inbound-agent | |
uses: peter-evans/dockerhub-description@v4 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
enable-url-completion: true | |
short-description: This is an image for Jenkins agents using TCP or WebSockets to establish inbound connection to the Jenkins controller | |
repository: jenkins/inbound-agent | |
readme-filepath: ./README_inbound-agent.md |