Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/arm auto release 0.3.5 #36

Merged
merged 2 commits into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
- name: Build AMD ZIP File
id: build-amd-zip
working-directory: ./logzio-lambda-extensions-logs
run: ./build-zip.sh
run: |
chmod +x ./build-zip.sh
./build-zip.sh
- name: Publish AMD64 Layer Version
if: (steps.setup-aws.outcome == 'success' && steps.build-amd-zip.outcome == 'success')
id: publish-amd64
Expand Down Expand Up @@ -58,7 +60,9 @@ jobs:
- name: Build ARM ZIP File
id: build-arm-zip
working-directory: ./logzio-lambda-extensions-logs
run: chmod +x ./build-arm-zip.sh
run: |
chmod +x ./build-arm-zip.sh
./build-arm-zip.sh
- name: Publish ARM64 Layer Version
id: publish-arm64
if: (steps.setup-aws.outcome == 'success' && steps.build-arm-zip.outcome == 'success')
Expand Down
2 changes: 2 additions & 0 deletions logzio-lambda-extensions-logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,8 @@ foo: bar
**NOTE:** If your AWS region is not in the list, please reach out to Logz.io's support or open an issue in this repo.
### Changelog:
- **0.3.5**:
- Fix ARM layer release
- **0.3.4**:
- Fix missing Lambda layer policy in release.
- **0.3.3**:
Expand Down
Loading