Skip to content

Commit

Permalink
modify deploy.yml; not yet tested
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberbuff committed Sep 4, 2024
1 parent 1be54c1 commit 3a1b66f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 12 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: read
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 export
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: 2 additions & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"deploy": "gh-pages -d out -t true",
"format": "biome format --write .",
"check": "biome check --write --unsafe ."
},
Expand Down

0 comments on commit 3a1b66f

Please sign in to comment.