Skip to content

changed a application info to paid account 1 #17

changed a application info to paid account 1

changed a application info to paid account 1 #17

Workflow file for this run

name: Deploy Frontend
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
- run: docker build -t ksspam/react-test -f Dockerfile.dev .
- run: docker run -e CI=true ksspam/react-test npm test
- name: Generate deployment package
run: zip -r deploy.zip . -x '*.git*'
- name: Deploy to EB
uses: einaregilsson/beanstalk-deploy@v18
with:
aws_access_key: ${{ secrets.AWS_ACCESS_KEY }}
aws_secret_key: ${{ secrets.AWS_SECRET_KEY }}
application_name: react_veggie
environment_name: Reactveggie-env
existing_bucket_name: elasticbeanstalk-us-east-1-223194923019
region: us-east-1
version_label: ${{ github.sha }}2
deployment_package: deploy.zip