Skip to content

Commit

Permalink
ci: add bump minor action
Browse files Browse the repository at this point in the history
  • Loading branch information
ayuhito committed Sep 12, 2024
1 parent 270a8e6 commit 320d205
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 4 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/bump-minor.yml
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 "83556432+fontsource-bot@users.noreply.github.com"
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 }}
2 changes: 1 addition & 1 deletion .github/workflows/cron-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
git config --global user.name "fontsource-bot"
- name: Publish to NPM
run: "bun run ci:publish"
run: bunx @fontsource-utils/publish publish patch --yes --provenance
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
git config --global user.name "fontsource-bot"
- name: Publish to NPM
run: "bun run ci:publish"
run: bunx @fontsource-utils/publish publish patch --yes --provenance
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hello@ayuhito.com>",
"license": "MIT",
Expand Down

0 comments on commit 320d205

Please sign in to comment.