mirror of
https://github.com/philippemerle/KubeDiagrams.git
synced 2026-08-22 14:36:24 +00:00
26 lines
545 B
YAML
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
|