Skip to content

Export and Build

Export and Build #18

Workflow file for this run

name: Export and Build
on:
workflow_dispatch: # allow manual trigger
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Export Fontra and UFO sources and build TTF
run: ./export_and_build.sh
- name: Storing Fontra Sources
uses: actions/upload-artifact@v4
with:
name: NotoCJKVarCoFontraSources
path: build/fontra
retention-days: 5
- name: Storing UFO Sources
uses: actions/upload-artifact@v4
with:
name: NotoCJKVarCoUFOSources
path: build/ufo
retention-days: 5
- name: Storing TTF VarCo Artifacts
uses: actions/upload-artifact@v4
with:
name: NotoCJKVariableVarCoFonts
path: build/ttf-varco
retention-days: 5
- name: Storing TTF Artifacts
uses: actions/upload-artifact@v4
with:
name: NotoCJKVariableFonts
path: build/ttf
retention-days: 5