Commit 9fbc4272 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

feat: use local GitLab hostname

parent 29ada57c
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -23,9 +23,11 @@ stages:
  - publish
  - production

# override Angular build job to run build only
# override Angular build job to run build only (no tests)
ng-build:
  script:
    # collect environment variables
    - ng run kicker:collect-vars
    # build production artifact
    - ng $NG_BUILD_ARGS --no-progress

+132 −126
Original line number Diff line number Diff line
@@ -114,6 +114,12 @@
							"src/**/*.html"
						]
					}
				},
				"collect-vars": {
					"builder": "ng-process-env:collectVars",
					"options": {
						"environmentFile": "src/environments/environment.prod.ts"
					}
				}
			}
		}
+265 −66

File changed.

Preview size limit exceeded, changes collapsed.

+2 −1
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@
    "@angular/router": "15.2.9",
    "@ng-bootstrap/ng-bootstrap": "14.2.0",
    "boosted": "4.3.1",
    "ng-process-env": "^16.0.6",
    "ngx-matomo": "1.1.0",
    "ngx-showdown": "6.0.0",
    "rxjs": "7.8.1",
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@
               title="Project samples using templates"><span class="fab fa-gitlab"></span> Examples</a></li>
          <li class="nav-item">
            <a class="nav-link"
               href="https://gitlab.com/to-be-continuous"
               [href]="tbcUrl"
               title="Templates code and documentation"><span class="fab fa-gitlab"></span> GitLab</a></li>
        </ul>
      </div>
Loading