Export and Build #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |