Build and Release [Weekly] #75
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 and Release [Weekly] | |
on: | |
schedule: | |
- cron: "0 0 * * 0" | |
permissions: | |
id-token: write | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install | |
run: bun install | |
- name: Fetch API # Calls Google Font Metadata to fetch the latest data from Google's Developer API | |
run: bunx gfm generate $GOOGLE_API_KEY | |
env: | |
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }} | |
- name: Parse API | |
run: bunx gfm parse | |
- name: Build fonts # Build all updated Google Fonts in repository | |
run: bunx fontsource build | |
- name: Remove Duplicates | |
run: bun run check-duplicates | |
- name: Generate fontlist | |
run: bun run fontlist | |
- name: Save GFM metadata | |
run: bun run gfm-metadata | |
- name: Save Fontsource metadata | |
run: bun run metadata | |
- name: Setup Git Config | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "fontsource-bot" | |
- name: Publish to NPM | |
run: npx @fontsource-utils/publish publish patch --yes --provenance | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Update Algolia Index | |
run: bun run algolia | |
env: | |
ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }} |