Skip to content

Commit 8df83c1

Browse files
author
Julien CAFFET
committed
Add CI/CD
1 parent 2e093fc commit 8df83c1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/deploy-frontend.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
PRODUCT: wallet
2424
APPLICATION: frontend
2525
AWS_DEFAULT_REGION: eu-west-1
26-
BUILD_DIR: build
26+
BUILD_DIR: frontend/build
2727

2828
steps:
2929
- uses: actions/checkout@v4
@@ -71,7 +71,9 @@ jobs:
7171
npm ci
7272
7373
- name: Building sources
74-
run: npm run build --if-present
74+
run: |
75+
cd frontend
76+
npm run build --if-present
7577
working-directory: ${{ env.BUILD_DIR }}
7678

7779
- name: Configure AWS credentials

0 commit comments

Comments
 (0)