hopefully it works #13
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
name: Generate Tech Tree | ||
on: | ||
push: | ||
branches: [ master ] | ||
jobs: | ||
generate tech tree: | ||
Check failure on line 6 in .github/workflows/generate-tree.yaml GitHub Actions / Generate Tech TreeInvalid workflow file
|
||
name: Generate Tech Tree | ||
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 | ||
options: -v ${{ github.workspace }}:/data | ||
run: | | ||
java -jar /app/app.jar /data/tree.yaml > /data/tree.svg | ||
- name: FUCK | ||
run: cat tree.svg | ||
shell: bash |