Remove comments when parsing pom.xml files #603
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
on: | |
push: | |
branches: | |
- main | |
name: Make distribution | |
jobs: | |
build: | |
name: Make distribution | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: latest | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Install Dependencies | |
run: poetry install | |
- name: Install Graphviz dependency | |
run: sudo apt install graphviz | |
- name: Build project | |
run: | | |
make distribution | |
- name: Upload distribution to workflow tab | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "distribution" | |
path: "dist/*" |