Skip to content

Commit

Permalink
gzipping output as it is over 2gb otherwise
Browse files Browse the repository at this point in the history
  • Loading branch information
nleanba authored Apr 15, 2024
1 parent d3f6774 commit 6e3110b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,16 @@ jobs:
sudo chmod a+x /usr/local/lib/tarql-1.2/bin/tarql
sudo ln -s /usr/local/lib/tarql-1.2/bin/tarql /usr/local/bin/
- name: Get and conver
- name: Get and convert
run: |
wget "https://api.checklistbank.org/dataset/3LR/export.zip?format=DwCA&extended=true" -O dwca.zip
unzip dwca.zip Taxon.tsv
tarql --tabs query.sparql Taxon.tsv > col.ttl
gzip -k col.ttl
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ${{ github.workspace }}/col.ttl
files: ${{ github.workspace }}/col.ttl.gz
generate_release_notes: true
tag_name: ${{ github.ref_name }}

0 comments on commit 6e3110b

Please sign in to comment.