-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 1.08 KB
/
deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Deploy Frontend
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
- run: docker build -t cygnetops/react-test -f Dockerfile.dev .
- run: docker run -e CI=true cygnetops/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: docker
environment_name: Docker-env
existing_bucket_name: elasticbeanstalk-us-east-1-378671901160
region: us-east-1
version_label: ${{ github.sha }}
deployment_package: deploy.zip
use_existing_version_if_available: true