We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 828994d commit e57493cCopy full SHA for e57493c
.github/workflows/deploy.yaml
@@ -22,3 +22,18 @@ jobs:
22
23
- name: Run tests in container
24
run: docker run -e CI=true mmaksi/react-nginx npm run test
25
+
26
+ - name: Generate deployment package
27
+ run: zip -r deploy.zip . -x '*.git*'
28
29
+ - name: Deploy to EB
30
+ uses: einaregilsson/beanstalk-deploy@v21
31
+ with:
32
+ aws_access_key: ${{ secrets.AWS_ACCESS_KEY }}
33
+ aws_secret_key: ${{ secrets.AWS_SECRET_KEY }}
34
+ application_name: frontend
35
+ environment_name: frontend-env
36
+ existing_bucket_name: elasticbeanstalk-eu-north-1-749180651079
37
+ region: eu-north-1
38
+ version_label: ${{ github.sha }}
39
+ deployment_package: deploy.zip
compose.yaml renamed to compose-dev.yaml
0 commit comments