Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install cargo-binstall
uses: cargo-bins/cargo-binstall@v1.14.4
- name: Use cargo-binstall to grab precompiled fontc
run: cargo binstall fontc@0.3.1
run: cargo binstall fontc@0.5.0
- name: Build upright font
run: fontc sources/GoogleSansCode.glyphspackage --flatten-components --decompose-transformed-components --output-file fonts/variable/GoogleSansCode[wght].ttf
- name: Build italic font
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,10 @@ update: venv venv-test

git commit -m "Update requirements" requirements.txt requirements-test.txt
git push

# ---------------------------
# Generate BASE table records
# ---------------------------
autobase: build
cargo binstall autobase-cli --no-confirm || cargo install --locked autobase-cli
autobase --min-max --config sources/autobase.toml --words 1000000 fonts/variable/GoogleSansCode*.ttf
Loading