forked from CodeYourFuture/Full-Stack-Project-Assessment
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: shadi fakhri <[email protected]>
- Loading branch information
Showing
1 changed file
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |