Skip to content

fix: use spaces not tabs #26

fix: use spaces not tabs

fix: use spaces not tabs #26

Workflow file for this run

name: Build and Release [Manual]
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
if: github.actor == 'ayuhito' || github.actor == 'jwr12135'
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: "0"
- name: Enable PNPM
uses: pnpm/action-setup@v2
- name: Set node version to 18
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "pnpm"
- name: Install
run: pnpm install --frozen-lockfile
- name: Build project

Check failure on line 29 in .github/workflows/manual-run.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/manual-run.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
run: pnpm run build
- name: Generate API
run: pnpm run cli generate $GOOGLE_API_KEY
env:
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
- name: Parse API
run: pnpm run cli parse
- name: Stage, commit and push files
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_user_name: "fontsource-bot"
commit_user_email: "83556432+fontsource-bot@users.noreply.github.com"
commit_author: "fontsource-bot <83556432+fontsource-bot@users.noreply.github.com>"
commit_message: "chore(build): update API [Manual]"
continue-on-error: true