There was an error while loading. Please reload this page.
1 parent 7d44cf1 commit a262fc5Copy full SHA for a262fc5
1 file changed
.github/workflows/build.yaml
@@ -8,11 +8,17 @@ jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
11
+ # This repo owns its own Python environment so fonttools makes it to our interpreter.
12
+ # If we don't have this package, the symbols font subset cannot be generated at build time.
13
+ - uses: actions/setup-python@v6
14
+ with:
15
+ python-version: "3.x"
16
- name: Install fonttools
17
run: python3 -m pip install fonttools
18
- uses: secondlife/action-autobuild@v5
19
with:
20
platform: common
21
+ setup-python: false
22
release:
23
needs: build
24
runs-on: [ubuntu-latest]
0 commit comments