Bump ufolib2 from 0.13.1 to 0.16.0 #298
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: gen zip file name | |
id: zip-name | |
shell: bash | |
# Set the archive name to repo name + "-assets" e.g "MavenPro-assets" | |
run: echo "ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-fonts" >> $GITHUB_ENV | |
# If a new release is cut, use the release tag to auto-bump the source files | |
- name: Install dependencies | |
run: | | |
pip install -r requirements.txt | |
- name: Build font | |
run: ./build.sh | |
- name: Check with fontbakery | |
run: | | |
fontbakery check-googlefonts -x com.google.fonts/check/STAT fonts/*.ttf | |
continue-on-error: true | |
# - name: proof | |
# run: make proof | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ env.ZIP_NAME }} | |
path: | | |
fonts | |
outputs: | |
zip_name: ${{ env.ZIP_NAME }} | |
release: | |
# only run if the commit is tagged... | |
if: github.event_name == 'release' | |
# ... and it builds successfully | |
needs: | |
- build | |
runs-on: ubuntu-latest | |
env: | |
ZIP_NAME: ${{ needs.build.outputs.zip_name }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download artefact files | |
uses: actions/download-artifact@v2 | |
with: | |
name: ${{ env.ZIP_NAME }} | |
path: ${{ env.ZIP_NAME }} | |
- name: Zip files | |
run: zip -r ${{ env.ZIP_NAME }}.zip ${{ env.ZIP_NAME }} | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ env.ZIP_NAME }}.zip | |
asset_name: ${{ env.ZIP_NAME }}.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
body: "Production ready fonts" |