Skip to content

Commit

Permalink
update s3 deploiement
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriRomano committed Sep 15, 2024
1 parent 511ab59 commit 166c1dd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pipeline-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build
run: npm run build

- name: Upload to S3
uses: jakejarvis/s3-sync-action@master
with:
Expand All @@ -40,7 +43,7 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ secrets.AWS_REGION }}
SOURCE_DIR: 'build/'
SOURCE_DIR: 'dist/'

build-and-push-image:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 166c1dd

Please sign in to comment.