-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e76515
commit 7dda662
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: Build font and specimen | ||
|
||
on: [push, release] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.8 | ||
- name: Install sys tools/deps | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install ttfautohint | ||
sudo snap install yq | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ./venv/ | ||
key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }} | ||
restore-keys: | | ||
${{ runner.os }}-venv- | ||
- name: Do first-run script if necessary | ||
run: make .init.stamp | ||
if: github.repository != 'googlefonts/googlefonts-project-template' | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
name: First-run setup | ||
if: github.repository != 'googlefonts/googlefonts-project-template' | ||
with: | ||
file_pattern: .init.stamp README.md requirements.txt OFL.txt | ||
commit_message: "Personalize for this repo" | ||
- 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: Bump release | ||
if: github.event_name == 'release' | ||
run: | | ||
. venv/bin/activate | ||
SRCS=$(yq e ".sources[]" sources/config.yaml) | ||
TAG_NAME=${GITHUB_REF/refs\/tags\//} | ||
echo "Bumping $SRCS to $TAG_NAME" | ||
for src in $SRCS | ||
do | ||
bumpfontversion sources/$src --new-version $TAG_NAME; | ||
done | ||
- name: Build font | ||
run: make build | ||
- name: Check with fontbakery | ||
run: make test | ||
continue-on-error: true | ||
- name: proof | ||
run: make proof | ||
- name: setup site | ||
run: cp scripts/index.html docs/index.html | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./docs | ||
- name: Commit files # transfer the new html files back into the repository | ||
run: | | ||
git config --local user.name ${{ github.actor }} | ||
git config --local user.email "${{ github.actor }}@users.noreply.github.com" | ||
git add . | ||
git commit -m "Updating the repository" | ||
- name: Push changes # push the output folder to your repo | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
force: true | ||
|
||
- name: Archive artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ env.ZIP_NAME }} | ||
path: | | ||
fonts | ||
docs | ||
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@v3 | ||
- 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" |