Auto commit at 2024-09-18T10:40:13.481Z #556
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
name: 'Storybook Deployment' | |
on: | |
# push: | |
# branches: | |
# - master | |
# - main | |
jobs: | |
storybook-deployment: | |
runs-on: ubuntu-latest | |
if: github.repository == 'PostHog/posthog' | |
steps: | |
- name: Check out PostHog/posthog repo | |
uses: actions/checkout@v3 | |
with: | |
path: posthog | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
package_json_file: posthog/package.json | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.12.1 | |
cache: pnpm | |
cache-dependency-path: posthog/pnpm-lock.yaml | |
- name: Install dependencies (pnpm) | |
run: cd posthog && pnpm i | |
- name: Build storybook | |
run: cd posthog && pnpm build-storybook | |
- name: Check out PostHog/storybook-build repo | |
uses: actions/checkout@v3 | |
with: | |
path: storybook-build | |
repository: PostHog/storybook-build | |
token: ${{ secrets.POSTHOG_BOT_GITHUB_TOKEN }} | |
- name: Copy built changes to PostHog/storybook-build repo | |
run: | | |
# keep the CNAME file, but discard all the rest | |
cp storybook-build/docs/CNAME posthog/storybook-static/ | |
rm -rf storybook-build/docs | |
cp -a posthog/storybook-static storybook-build/docs | |
- name: Set commit message | |
id: commit-message | |
run: echo "msg=Storybook build for ${{ github.sha }}" >> $GITHUB_OUTPUT | |
- name: Commit update | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
repository: storybook-build | |
commit_message: ${{ steps.commit-message.outputs.msg }} | |
commit_user_name: PostHog Bot | |
commit_user_email: [email protected] | |
commit_author: PostHog Bot <[email protected]> |