Version 0.22.0 #29
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: Docker Hub Description | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
- .github/workflows/dockerhub-description.yml | |
jobs: | |
docker-hub-description: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Docker Hub Description | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: yuzutech/kroki | |
short-description: ${{ github.event.repository.description }} | |
readme-filepath: ./DOCKERHUB.md | |
- name: Docker Hub Description - bpmn | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: yuzutech/kroki-bpmn | |
short-description: Companion server for Kroki that provides BPMN | |
readme-filepath: ./DOCKERHUB-COMPANION.md | |
- name: Docker Hub Description - excalidraw | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: yuzutech/kroki-excalidraw | |
short-description: Companion server for Kroki that provides Excalidraw | |
readme-filepath: ./DOCKERHUB-COMPANION.md | |
- name: Docker Hub Description - mermaid | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: yuzutech/kroki-mermaid | |
short-description: Companion server for Kroki that provides Mermaid | |
readme-filepath: ./DOCKERHUB-COMPANION.md | |
- name: Docker Hub Description - diagramsnet | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: yuzutech/kroki-diagramsnet | |
short-description: Companion server for Kroki that provides diagrams.net (formerly draw.io) | |
readme-filepath: ./DOCKERHUB-COMPANION.md | |
- name: Docker Hub Description - wireviz | |
uses: peter-evans/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
repository: yuzutech/kroki-wireviz | |
short-description: Companion server for Kroki that provides WireViz | |
readme-filepath: ./DOCKERHUB-COMPANION.md |