diff --git a/.github/workflows/deploy-static.yml b/.github/workflows/deploy-static.yml index 81c8656..70ca0c9 100755 --- a/.github/workflows/deploy-static.yml +++ b/.github/workflows/deploy-static.yml @@ -41,7 +41,7 @@ jobs: - name: Checkout Project uses: actions/checkout@v3 with: - path: './packages/projects/projects/${{ github.event.repository.name }}' + path: './packages/projects/projects/etherealengine/${{ github.event.repository.name }}' - name: Use Node.js uses: actions/setup-node@v3 with: @@ -56,13 +56,13 @@ jobs: key: ${{ runner.os }}-branch-build-${{ hashFiles('**/package.json') }} - run: cp .env.local.default .env.local - run: npm install --production=false --loglevel notice --legacy-peer-deps - - run: cd './packages/projects/projects/${{ github.event.repository.name }}' && npx cross-env STATIC_BUILD_HOST=${{ secrets.STATIC_BUILD_HOST }} npm run build + - run: cd './packages/projects/projects/etherealengine/${{ github.event.repository.name }}' && npx cross-env STATIC_BUILD_HOST=${{ secrets.STATIC_BUILD_HOST }} npm run build - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: - path: './packages/projects/projects/${{ github.event.repository.name }}/dist' + path: './packages/projects/projects/etherealengine/${{ github.event.repository.name }}/dist' - name: Sleep for 15 seconds run: sleep 15s shell: bash diff --git a/.github/workflows/project-build.yml b/.github/workflows/project-build.yml index a00deb7..586d6b5 100755 --- a/.github/workflows/project-build.yml +++ b/.github/workflows/project-build.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout Project uses: actions/checkout@v3 with: - path: './packages/projects/projects/${{ github.event.repository.name }}' + path: './packages/projects/projects/etherealengine/${{ github.event.repository.name }}' - name: Use Node.js uses: actions/setup-node@v3 with: diff --git a/manifest.json b/manifest.json index d78ba78..d6e16e0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "name": "ee-static-build-template", + "name": "etherealengine/ee-static-build-template", "version": "0.0.0", "engineVersion": "1.6.0", "description": "" diff --git a/package.json b/package.json index 818c1ed..b2f14e5 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ee-static-build-template", + "name": "@etherealengine/ee-static-build-template", "version": "0.0.0", "description": "", "type": "module", diff --git a/tsconfig.json b/tsconfig.json index d2892cc..009be77 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -34,7 +34,7 @@ "./tests/**/*.ts" ], "include": [ - "../../../server-core/src/*", + "../../../../server-core/src/*", "./**/*.ts", "./**/*.tsx" ]