Skip to content

Commit

Permalink
Zip without folders
Browse files Browse the repository at this point in the history
  • Loading branch information
kyeah committed Jun 21, 2024
1 parent 98b3875 commit a9fab9d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cclf-import-dev-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build cclf-import zip file
run: |
go build -o bin/cclf-import ./lambda/cclf/main.go
zip function.zip bin/cclf-import
zip -j function.zip bin/cclf-import
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ vars.AWS_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cclf-import-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CGO_ENABLED: 0
run: |
go build -o bin/cclf-import ./lambda/cclf/main.go
zip function.zip bin/cclf-import
zip -j function.zip bin/cclf-import
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ vars.AWS_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opt-out-import-dev-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build opt-out-import zip file
run: |
go build -o bin/opt-out-import ./lambda/optout/main.go
zip function.zip bin/opt-out-import
zip -j function.zip bin/opt-out-import
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ vars.AWS_REGION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/opt-out-import-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CGO_ENABLED: 0
run: |
go build -o bin/opt-out-import ./lambda/optout/main.go
zip function.zip bin/opt-out-import
zip -j function.zip bin/opt-out-import
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: ${{ vars.AWS_REGION }}
Expand Down

0 comments on commit a9fab9d

Please sign in to comment.