From 09de4db5d6c77eff1c82c891d0cccd7016314f0d Mon Sep 17 00:00:00 2001 From: Stefan Pandzic <stefan.pandzic> Date: Tue, 17 Dec 2024 11:44:08 +0100 Subject: [PATCH] test new pipeline --- buildspec.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/buildspec.yml b/buildspec.yml index ef3e882..bf92145 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -10,6 +10,11 @@ phases: build: commands: - npm run build + deploy_s3: + commands: + - echo "Deploying to S3..." + - aws s3 cp build/ s3://contacts-app-frontend-bucket/ --recursive + artifacts: files: - '**/*' -- GitLab