Fix italic guidelines #122
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: Build font and specimen | |
on: [push, release] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- uses: actions/checkout@v4 | |
name: Checkout files | |
# Check why we were run; if any files in sources/* were changed, | |
# this will set the output of this step to true. We can check this | |
# later with ${{steps.check.outputs.sources}}. See | |
# https://github.com/dorny/paths-filter | |
- uses: dorny/paths-filter@v3 | |
id: check | |
name: Check for changes in sources | |
with: | |
filters: | | |
sources: | |
- 'sources/**' | |
- name: Install sys tools/deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install ttfautohint | |
- name: Build font | |
run: make build | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Playwrite-fonts | |
path: | | |
fonts | |
OFL.txt | |
# If any files in fonts/* were changed, commit them, but only if | |
# the check step above set the sources output to true. | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Automated rebuild | |
file_pattern: "fonts" | |
if: steps.check.outputs.sources == 'true' | |
release: | |
# only run if the commit is tagged... | |
if: contains(github.ref, 'refs/tags/') | |
# ... and it builds successfully | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artefact files | |
uses: actions/download-artifact@v4 | |
with: | |
name: Playwrite-fonts | |
path: Playwrite-fonts | |
- name: Zip files | |
run: zip -r Playwrite-fonts.zip Playwrite-fonts | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: Playwrite-fonts.zip | |
asset_name: Playwrite-fonts.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
body: "Production ready fonts" | |
- name: Check for release | |
id: create_release | |
run: | | |
if ! gh release view ${{ github.ref_name }}; then | |
git show -s --format=%B ${{ github.ref_name }} | tail -n +4 | gh release create ${{ github.ref_name }} -t ${{ github.ref_name }} -F - | |
fi |