Files
KubeDiagrams/.github/workflows/test-action.yml
T
2025-04-29 13:46:59 +02:00

26 lines
545 B
YAML

name: "Test Action"
on:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Generate diagram from Helm chart"
uses: philippemerle/KubeDiagrams@main
with:
type: "helm"
args: 'https://charts.jetstack.io/cert-manager'
- name: "Upload diagram artifact"
uses: actions/upload-artifact@v4
with:
name: cert-manager.png
path: cert-manager.png
if-no-files-found: error
retention-days: 1