We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44908cb commit 4c740a5Copy full SHA for 4c740a5
.github/workflows/deploy.yaml
@@ -25,6 +25,9 @@ jobs:
25
string: "${{ steps.current-time.outputs.time }}"
26
replace-with: '-'
27
flags: 'g'
28
+
29
+ - name: Generate deployment package for ELB
30
+ run: zip -r deploy.zip . -x '*.git*'
31
32
- name: Deploy to ELB
33
uses: einaregilsson/beanstalk-deploy@v18
@@ -37,4 +40,4 @@ jobs:
37
40
version_label: "${{ github.event.repository.name }}-${{ steps.format-time.outputs.replaced }}"
38
41
region_specific_s3: "true"
39
42
use_existing_version_if_available: "true"
- deployment_package: "docker-compose.yaml"
43
+ deployment_package: "deploy.zip"
0 commit comments