-
-
Notifications
You must be signed in to change notification settings - Fork 42
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
Showing
4 changed files
with
60 additions
and
4 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,57 @@ | ||
name: Build and Release [Bump Minor] [Manual] | ||
|
||
on: [workflow_dispatch] | ||
|
||
permissions: | ||
id-token: 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 --frozen-lockfile | ||
|
||
- 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 --force | ||
|
||
- name: Build fonts # Build all updated Google Fonts in repository | ||
run: bunx fontsource build --force | ||
|
||
- 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: bunx @fontsource-utils/publish publish minor --force --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 }} |
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
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
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 |
---|---|---|
|
@@ -11,8 +11,7 @@ | |
"fontlist": "tsx scripts/fontlist.ts", | ||
"gfm-metadata": "tsx scripts/gfm-metadata.ts", | ||
"metadata": "tsx scripts/metadata.ts", | ||
"test": "fontsource create-verify --all", | ||
"ci:publish": "npx @fontsource-utils/publish publish patch --yes --provenance" | ||
"test": "fontsource create-verify --all" | ||
}, | ||
"author": "Ayuhito <[email protected]>", | ||
"license": "MIT", | ||
|