-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 964 Bytes
/
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
name: Deploy Frontend
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- run: docker build -t wjddn/react-test -f Dockerfile.dev .
- run: docker run -e CI=true wjddn/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-gitaction
environment_name: docker-gitaction
existing_bucket_name: elasticbeanstalk-eu-north-1-900478210705
region: eu-north-1
version_label: ${{ github.sha }}
deployment_package: deploy.zip