Skip to content

Commit

Permalink
fix: release action uses poetry to create schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rocheleau committed Sep 17, 2024
1 parent cebe427 commit 8bda0ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
- name: Make release artifacts
run: |
mkdir -p ./dist/schemas
./manage.py schema phenopacket >> ./dist/schemas/phenopacket_schema.json
./manage.py schema experiment >> ./dist/schemas/experiment_schema.json
./manage.py schema discovery >> ./dist/schemas/discovery.json
poetry run ./manage.py schema phenopacket >> ./dist/schemas/phenopacket_schema.json
poetry run ./manage.py schema experiment >> ./dist/schemas/experiment_schema.json
poetry run ./manage.py schema discovery >> ./dist/schemas/discovery.json
- name: Upload release artifacts
uses: actions/github-script@v7
with:
Expand Down

0 comments on commit 8bda0ff

Please sign in to comment.