This repository is a stub. It is used only for storing model data files used by reltrans during invocation.
Important
These files are currently only used in test suites. See each data release for more information.
Each GitHub release needs to be associated with a git tag. Describe what changes or files you are adding very briefly in the CHANGELOG.md file, commit those changes, and tag the commit with a new version, e.g.
git tag v0.1.1
git push origin main --tags
A new release may then be created from this tag.
The upload limit per file is 1GB. To split a file, use
split --bytes=1GB --numeric-suffixes=0 --suffix-length=2 ${FILE} ${FILE}-
(Note the trailing - on the second positional argument).
Files may be recombined as
cat $(ls ${FILE}-* | sort -V) > ${FILE}