Skip to content

Commit 4c740a5

Browse files
committed
fix: use full zip for deploy
1 parent 44908cb commit 4c740a5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
string: "${{ steps.current-time.outputs.time }}"
2626
replace-with: '-'
2727
flags: 'g'
28+
29+
- name: Generate deployment package for ELB
30+
run: zip -r deploy.zip . -x '*.git*'
2831

2932
- name: Deploy to ELB
3033
uses: einaregilsson/beanstalk-deploy@v18
@@ -37,4 +40,4 @@ jobs:
3740
version_label: "${{ github.event.repository.name }}-${{ steps.format-time.outputs.replaced }}"
3841
region_specific_s3: "true"
3942
use_existing_version_if_available: "true"
40-
deployment_package: "docker-compose.yaml"
43+
deployment_package: "deploy.zip"

0 commit comments

Comments
 (0)