Skip to content

Profile README

Profile README #5323

Workflow file for this run

name: Profile README
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 */8 * * *"
workflow_dispatch:
jobs:
main:
name: Recreate README
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
run_install: false
- name: Set up node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Restore cached build
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
id: cache-build
with:
path: build
key: ${{ github.sha }}
- name: Fallback if build cache fails
run: pnpm build
if: steps.cache-build.outputs.cache-hit != 'true'
- name: Recreate README
run: pnpm start
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit and push
if: ${{ github.event_name != 'pull_request' }}
uses: s0/git-publish-subdir-action@develop
env:
REPO: [email protected]:promise/promise.git
BRANCH: promise
FOLDER: output
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
SQUASH_HISTORY: true
SKIP_EMPTY_COMMITS: false
MESSAGE: "chore: profile automation 🎉"
COMMIT_NAME: "github-actions[bot]"
COMMIT_EMAIL: "github-actions[bot]@users.noreply.github.com"