Skip to content

Commit

Permalink
force client deploy on changes in shared
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed Oct 26, 2024
1 parent 15af962 commit 9eacf11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
client:
- 'client/**'
- '.github/workflows/**'
shared:
- 'shared/**'
- name: Configure AWS credentials
Expand Down
2 changes: 1 addition & 1 deletion admin/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const start = async () => {

const router = AdminJSExpress.buildRouter(admin);

app.use(admin.options.rootPath, router);
app.use(admin.options.rootPath, adminRouter);

app.listen(PORT, () => {
console.log(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import {
import { dataSource } from "../../datasource.js";
import { BaseData } from "@shared/entities/base-data.entity.js";
import { Country } from "@shared/entities/country.entity.js";
import { FinancingCost } from "@shared/entities/financing-cost.entity.js";
import { COMMON_RESOURCE_LIST_PROPERTIES } from "../common/common.resources.js";
import { ImplementationLaborCost } from "@shared/entities/implementation-labor.entity.js";

Expand Down

0 comments on commit 9eacf11

Please sign in to comment.