Merge pull request #4 from magicsword-io/nextra #1
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: Deploy site | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy-site: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Set up Python 3.12 | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12 | |
- name: Install Poetry | |
run: curl -sSL https://install.python-poetry.org | python - | |
- name: Install dependencies with Poetry | |
run: poetry install | |
- name: Generate MDX | |
run: poetry run python bin/site.py -v | |
- name: Install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: Deploy Project Artifacts to Vercel | |
run: | | |
cd website | |
vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | |
vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} |