Skip to content

london-10-shadi-fakhri-full-stack-project #15

london-10-shadi-fakhri-full-stack-project

london-10-shadi-fakhri-full-stack-project #15

Workflow file for this run

name: Upload Frontend
'on':
push:
branches:
- main
paths: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
- 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.AWS_ACCESS_KEY_ID }}'
aws-secret-access-key: '${{ secrets.AWS_SECRET_ACCESS_KEY }}'
aws-region: eu-north-1
- name: Deploy static site to S3 bucket
run: 'aws s3 sync ./client/build s3://fullstackprojectaws'
<<<<<<< HEAD

Check failure on line 33 in .github/workflows/front-end.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/front-end.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
=======
>>>>>>> 1d0f65ee (creating yml file)