mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
refactor: rename project from AlphaHuman to OpenHuman and update configurations
- Deleted obsolete .mcp.json file. - Updated ESLint and test configurations to reflect new file paths. - Changed title and branding in index.html and README.md to OpenHuman. - Adjusted package.json scripts for testing with new configuration files. - Modified E2E test scripts to use updated WebDriverIO configuration paths. - Added new TypeScript configuration files for E2E testing and Vitest.
This commit is contained in:
@@ -33,18 +33,16 @@ jobs:
|
||||
uses: actions/configure-pages@v5
|
||||
|
||||
- name: Install dependencies
|
||||
run: cd lander && npm ci
|
||||
run: cd lander && yarn install --frozen-lockfile
|
||||
|
||||
- name: Build (static export)
|
||||
env:
|
||||
NEXT_PUBLIC_BASE_PATH: ${{ github.event.repository.name == format('{0}.github.io', github.repository_owner) && '' || format('/{0}', github.event.repository.name) }}
|
||||
run: |
|
||||
cd lander
|
||||
npm run build
|
||||
yarn build
|
||||
|
||||
# If Next doesn't emit `out/` automatically, fall back to `next export`.
|
||||
if [ ! -d out ]; then
|
||||
npx next export --out-dir out
|
||||
./node_modules/.bin/next export --out-dir out
|
||||
fi
|
||||
|
||||
# GitHub Pages custom domain support: CNAME must be present at the site root.
|
||||
@@ -58,4 +56,3 @@ jobs:
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v4
|
||||
|
||||
|
||||
Reference in New Issue
Block a user