Skip to content

Commit

Permalink
add gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbuff committed Sep 4, 2024
1 parent 1be54c1 commit a3a014a
Show file tree
Hide file tree
Showing 3 changed files with 491 additions and 13 deletions.
38 changes: 26 additions & 12 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: Deploy site

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

on:
push:
branches:
- main

permissions:
contents: write
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy-site:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -26,11 +31,20 @@ jobs:
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

- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x
- name: Export site
run: |
npm install
npm run build
working-directory: website
- name: Deploy
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 }}
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
npm run deploy -- -u "github-actions-bot <[email protected]>"
working-directory: website
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit a3a014a

Please sign in to comment.