Skip to content

Update the new wordings #26

Update the new wordings

Update the new wordings #26

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build static export
run: npm run build
env:
NEXT_PUBLIC_STATIC_MODE: 'true'
NEXT_PUBLIC_BASE_PATH: '/agentnetes'
- name: Add .nojekyll
run: touch out/.nojekyll
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v3
with:
path: out
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4