Skip to content

Commit

Permalink
Update front-end.yml
Browse files Browse the repository at this point in the history
Signed-off-by: shadi fakhri <[email protected]>
  • Loading branch information
Shadi38 authored Jan 31, 2024
1 parent cc922f3 commit dab25af
Showing 1 changed file with 28 additions and 12 deletions.
40 changes: 28 additions & 12 deletions .github/workflows/front-end.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
name: CI

on: [push]

name: Upload Frontend
'on':
push:
branches:
- main
paths: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
working-directory: ./client

- name: Install dependencies and build app
run: |
npm install
npm run build
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
- name: Create .env File
run: |
touch ./client/.env
echo "${{ secrets.FRONT_ENV_FILE }}" > ./client/.env
- name: Install dependencies
run: npm install
working-directory: ./client
- name: Build app
run: npm run build
working-directory: ./client
- name: Upload to S3
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: '${{ secrets.ACCESS_KEY_ID }}'
aws-secret-access-key: '${{ secrets.SECRET_ACCESS_KEY }}'
aws-region: eu-north-1
- name: Deploy static site to S3 bucket
run: 'aws s3 sync ./client/build s3://fullstackprojectaws'

0 comments on commit dab25af

Please sign in to comment.