Skip to content

Commit

Permalink
Moving to Github Pages (#6)
Browse files Browse the repository at this point in the history
* add gh-pages

* update checkout version
  • Loading branch information
cyberbuff authored Sep 5, 2024
1 parent 73323b3 commit a492747
Show file tree
Hide file tree
Showing 4 changed files with 493 additions and 15 deletions.
40 changes: 27 additions & 13 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
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
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.12
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 }}
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
validate-yaml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.12
Expand Down
Loading

0 comments on commit a492747

Please sign in to comment.