Skip to content

Commit

Permalink
Add data
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Zarubin committed Dec 15, 2024
1 parent 87fa07d commit b34c1ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
python ./scripts/validate.py
- name: Dump
run: |
mv collection/data data
python ./scripts/pkl.py --update
python ./scripts/pkl.py --dump json
python ./scripts/pkl.py --dump jsonnet
Expand All @@ -24,7 +25,7 @@ jobs:
python ./scripts/pkl.py --dump yaml
- name: Clear
run: |
find . -maxdepth 1 -regextype egrep -not -regex '.|..|\./(.git|dataset-dump.+)' -exec rm -rf {} +
find . -maxdepth 1 -regextype egrep -not -regex '.|..|\./(.git|data|dataset-dump.+)' -exec rm -rf {} +
- name: Readme
run: echo "Auto builds the latest version of dataset in available formats. Also added bulk build for convenient indexing OpenSearch or Elasticsearch." > README.md
- name: Save
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions scripts/hash.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/python3
import uuid

if __name__ == '__main__':
print(uuid.uuid4())

0 comments on commit b34c1ed

Please sign in to comment.