-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
piotr.suwala
committed
Apr 17, 2024
1 parent
3b5c8b3
commit 41efe57
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Generate Tech Tree | ||
on: | ||
push: | ||
branches: [ master ] | ||
jobs: | ||
checkout-repository: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Run the build process with Docker | ||
uses: addnab/docker-run-action@v3 | ||
with: | ||
image: ghcr.io/hspsh/tech-tree:issue-10-dockerfile | ||
run: | | ||
java -jar /app/app.jar tree.yaml > tree.svg | ||
- name: FUCK | ||
run: cat tree.svg | ||
shell: bash |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
nodes: | ||
- title: Tech Tree | ||
state: done | ||
- title: Outline | ||
state: broken | ||
- title: Onboarding | ||
state: todo | ||
requires: | ||
- Tech Tree | ||
- Outline | ||
- title: Proces Listy Zakupowej | ||
state: progress | ||
requires: | ||
- Tech Tree | ||
- Outline | ||
- title: Kubernetes | ||
state: broken | ||
- title: FluxCD | ||
state: broken | ||
requires: | ||
- Kubernetes | ||
- title: Syncronium | ||
state: broken | ||
link: http://example.com | ||
docs: https://github.com/hspsh/syncronium | ||
requires: | ||
- FluxCD |