london-10-shadi-fakhri-full-stack-project #12
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
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 | ||
======= | ||
>>>>>>> 1d0f65ee (creating yml file) |