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 fe01183 commit 944a69cCopy full SHA for 944a69c
.github/workflows/deploy.yaml
@@ -8,6 +8,19 @@ jobs:
8
build:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
12
- run: docker build -t smaragda2/docker-learn -f Dockerfile.dev .
13
- run: docker run -e CI=true smaragda2/docker-learn npm test
14
+
15
+ - name: Generate deployment package
16
+ run: zip -r deploy.zip . -x '*.git*'
17
18
+ - name: Deploy to Elastic Beanstalk
19
+ uses: einaregilsson/beanstalk-deploy@v18
20
+ with:
21
+ application_name: Docker-Course
22
+ environment_name: Docker-Course-env
23
+ existing_bucket_name: elasticbeanstalk-us-east-2-767828742387
24
+ region: us-east-2
25
+ version_label: ${{ github.sha }}
26
+ deployment_package: deploy.zip
0 commit comments