Skip to content

Create diagram

Create diagram #12

Workflow file for this run

name: Create diagram
on:
workflow_dispatch: {}
push:
tags:
- v*.*.*
jobs:
get_data:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Update diagram
id: make_diagram
uses: githubocto/repo-visualizer@0.7.1
with:
output_file: ".github/diagram.svg"
artifact_name: "my-diagram"
excluded_paths: "ignore,.github,PorphyStruct.Test/testfiles,PorphyStruct.Web/assets/package-lock.json"
should_push: false
max_depth: 15
- name: Get artifact
uses: actions/download-artifact@v2
with:
name: "my-diagram"
path: ".github"