Skip to content

test automation of client #9

test automation of client

test automation of client #9

Workflow file for this run

name: Upload on AWS S3
on:
push:
branches:
- main
defaults:
run:
working-directory: "client"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install Dependencies
run: npm install
- name: Checking version
run: node --version
env:
REACT_APP_API_URL: http://ec2-18-206-154-3.compute-1.amazonaws.com:5000
- name: create build
run: npm run build
- name: AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{secrets.ACCESS_KEY}}
aws-secret-access-key: ${{secrets.SECRET_ACCESS_KEY}}
aws-region: us-east-1
- name: Upload to S3
run: aws s3 sync ./build s3://cyf-video-hub --delete