Skip to content

Commit 68f34ff

Browse files
Merge pull request #344 from CivicDataLab/update/dependencies
Workflow update and package-lock sync
2 parents eee3e65 + d728e2d commit 68f34ff

File tree

6 files changed

+579
-347
lines changed

6 files changed

+579
-347
lines changed

.github/workflows/deploy-Dataspace-dev.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ env:
2020
NEXT_PUBLIC_PLATFORM_URL: 'https://dev.civicdataspace.in'
2121
NEXT_PUBLIC_ANALYTICS_URL: ${{secrets.NEXT_PUBLIC_ANALYTICS_URL}}
2222

23-
2423
jobs:
2524
deploy:
2625
runs-on: ubuntu-latest
@@ -30,7 +29,7 @@ jobs:
3029
uses: actions/checkout@v4
3130

3231
- name: Install dependencies
33-
run: npm install
32+
run: npm install --force
3433

3534
- name: Generate
3635
run: npm run generate

.github/workflows/deploy-Dataspace.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@v4
3030

3131
- name: Install dependencies
32-
run: npm install
32+
run: npm install --force
3333

3434
- name: Generate
3535
run: npm run generate
@@ -41,7 +41,7 @@ jobs:
4141
run: mv .next .next2
4242

4343
- name: Rename public to public2
44-
run: mv public public2
44+
run: mv public public2
4545

4646
- name: Send .next2 to EC2
4747
uses: appleboy/scp-action@master
@@ -59,8 +59,8 @@ jobs:
5959
username: ${{ secrets.EC2_USERNAME_DS }}
6060
key: ${{ secrets.EC2_PRIVATE_KEY }}
6161
source: public2
62-
target: DataExchange/DataExFrontend
63-
62+
target: DataExchange/DataExFrontend
63+
6464
- name: Update with new Build
6565
uses: appleboy/[email protected]
6666
with:

.github/workflows/deploy-IDS-Dataspace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v4
2828

2929
- name: Install dependencies
30-
run: npm install
30+
run: npm install --force
3131

3232
- name: Generate
3333
run: npm run generate

.github/workflows/pre-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
# Ensure generated directory exists
4747
mkdir -p ./gql/generated
48-
48+
4949
# Try to generate with timeout and fallback
5050
timeout 60s npm run generate:ci || {
5151
echo "GraphQL codegen failed or timed out, checking for existing files..."

config/site.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ export const siteConfig: SiteConfig = {
88
};
99

1010
export const locales = ['en', 'hi'];
11-

0 commit comments

Comments
 (0)