Skip to content

Commit

Permalink
feat: add quality estimates to release downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
BobBorges committed Jan 14, 2025
1 parent 1c00620 commit dc09158
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,17 @@ jobs:
python -m pip install --upgrade pip
pip install pyriksdagen
pip install cycler
- name: Zip metadata
run: zip -r persons.zip data

- name: Upload metadata to release
- name: zip quality estimates
run: zip -r quality.zip quality/estimates

- name: Upload artifacts to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: persons.zip
file: *.zip
tag: ${{ github.ref }}
file_glob: true

0 comments on commit dc09158

Please sign in to comment.