Skip to content

Merge pull request #262 from 100-hours-a-week/feature/lucy #139

Merge pull request #262 from 100-hours-a-week/feature/lucy

Merge pull request #262 from 100-hours-a-week/feature/lucy #139

Workflow file for this run

name: Deploy Frontend by Cloudfront
on:
workflow_dispatch:
push:
branches:
- main
- dev
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ap-northeast-2
- name: Install Dependencies
run: npm install
- name: Ensure env-cmd is installed
run: npm install env-cmd --save-dev
- name: Set environment variables for Develop
if: github.ref == 'refs/heads/dev'
run: |
echo "REACT_APP_API_URL=${{ secrets.REACT_APP_API_URL_DEV }}" > .env.development
env:
REACT_APP_ENV: development
- name: Build Project for Develop
if: github.ref == 'refs/heads/dev'
run: |
echo "Building project with API URL: ${{ secrets.REACT_APP_API_URL_DEV }}"
CI=false npm run build:dev
- name: Deploy to S3 for Development
if: github.ref == 'refs/heads/dev'
run: aws s3 sync build s3://ustock-dev-bucket/react/ --delete
- name: Set environment variables for Production
if: github.ref == 'refs/heads/main'
run: |
echo "REACT_APP_API_URL=${{ secrets.REACT_APP_API_URL_PROD }}" > .env.production
env:
REACT_APP_ENV: production
- name: Build Project for Production
if: github.ref == 'refs/heads/main'
run: |
echo "Building project with API URL: ${{ secrets.REACT_APP_API_URL_PROD }}"
CI=false npm run build:prod
- name: Deploy to S3 for Production
if: github.ref == 'refs/heads/main'
run: aws s3 sync build s3://ustock-bucket/react/ --delete