diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b792bbd..3830964 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: run: npm run build - name: Copy index.html to 404.html - run: cp dist/angor-hub/browser/index.html dist/angor-hub/browser/404.html + run: cp dist/angor-profile/browser/index.html dist/angor-profile/browser/404.html - name: Setup Pages uses: actions/configure-pages@v3 @@ -37,7 +37,7 @@ jobs: - name: Upload artifact uses: actions/upload-pages-artifact@v2 with: - path: './dist/angor-hub/browser' + path: './dist/angor-profile/browser' - name: Deploy to GitHub Pages uses: actions/deploy-pages@v2 \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 1cc3ab7..0ec4e93 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "angor-hub", + "name": "angor-profile", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "angor-hub", + "name": "angor-profile", "version": "0.0.0", "dependencies": { "@angular/animations": "^19.0.4", diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts index a347f21..6d6028c 100644 --- a/src/app/app.component.spec.ts +++ b/src/app/app.component.spec.ts @@ -14,16 +14,16 @@ describe('AppComponent', () => { expect(app).toBeTruthy(); }); - it(`should have the 'angor-hub' title`, () => { + it(`should have the 'angor-profile' title`, () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.componentInstance; - expect(app.title).toEqual('angor-hub'); + expect(app.title).toEqual('angor-profile'); }); it('should render title', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.nativeElement as HTMLElement; - expect(compiled.querySelector('h1')?.textContent).toContain('Hello, angor-hub'); + expect(compiled.querySelector('h1')?.textContent).toContain('Hello, angor-profile'); }); });