Add symbols fallback font #24
This file contains hidden or 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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| tags: [v*] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # This repo owns its own Python environment so fonttools makes it to our interpreter. | |
| # If we don't have this package, the symbols font subset cannot be generated at build time. | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.x" | |
| - name: Install fonttools | |
| run: python3 -m pip install fonttools | |
| - uses: secondlife/action-autobuild@v5 | |
| with: | |
| platform: common | |
| setup-python: false | |
| release: | |
| needs: build | |
| runs-on: [ubuntu-latest] | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| steps: | |
| - uses: secondlife/action-autobuild-release@v3 | |
| with: | |
| # false causes 'creds=github' to be added to generated | |
| # 'autobuild installables edit' commands | |
| public: true |