Skip to content

Profile README

Profile README #1658

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@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up node
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Restore cached build
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3
id: cache-build
with:
path: build
key: ${{ github.sha }}
- name: Fallback if build cache fails
run: npm run build
if: steps.cache-build.outputs.cache-hit != 'true'
- name: Recreate README
run: npm 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"