Skip to content

Commit

Permalink
copy file
Browse files Browse the repository at this point in the history
  • Loading branch information
maisiesadler committed May 2, 2021
1 parent f2a95cb commit 448b84e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ on:

jobs:
dockerbuild:
name: Docker build and test
name: Generate dependency diagram
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Docker build
- name: Docker build assembly
shell: bash
run: docker build .
run: |
docker build -t deptree .
id=$(docker create deptree)
docker cp $id:/app/DepTree.Console.dll - > DepTree.Console.dll
docker rm -v $id
- name: Generate UML dependencies
uses: maisiesadler/deptree@0.0.2

0 comments on commit 448b84e

Please sign in to comment.