Skip to content

Commit

Permalink
chore: vercel preview workflow (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Aug 17, 2024
1 parent 7b7a1e7 commit 6932b9d
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Deploy Preview environment on Vercel
on:
pull_request:
branches: ['main']

jobs:
deploy-job:
runs-on: ubuntu-latest

# Update the "Preview" environment with the Vercel deployed URL
environment:
name: Preview
url: ${{ steps.vercel-deploy.outputs.deployment_url }}

steps:
- uses: actions/setup-node@v4
- uses: actions/checkout@v4
- id: vercel-deploy
run: |
npx -y vercel deploy --target=preview --token=${{ secrets.VERCEL_TOKEN }} \
--build-env MDX=docs \
--build-env NEXT_PUBLIC_LIBNAME="Poimandres" \
--build-env NEXT_PUBLIC_LIBNAME_SHORT="pmndrs" \
--build-env BASE_PATH= \
--build-env DIST_DIR= \
--build-env OUTPUT=export \
--build-env HOME_REDIRECT=/introduction \
--build-env MDX_BASEURL="https://github.com/${{ github.repository }}/raw/${{ github.head_ref }}/docs" \
--build-env EDIT_BASEURL="https://github.com/${{ github.repository }}/edit/${{ github.head_ref }}/docs" \
--build-env NEXT_PUBLIC_URL="$VERCEL_PROJECT_PRODUCTION_URL" \
--build-env ICON="🖨️" \
--build-env LOGO=gutenberg.jpg \
> deployment-url.txt
echo "deployment_url=$(cat deployment-url.txt)" >> $GITHUB_OUTPUT
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
Binary file added docs/gutenberg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions docs/introduction.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Poimandres documentation
description: A documentation generator for `pmndrs/*` projects.
---

![](gutenberg.jpg)

## Heading 1

TODO

0 comments on commit 6932b9d

Please sign in to comment.