Skip to content

Commit

Permalink
Merge pull request #36 from logzio/bugfix/arm-auto-release
Browse files Browse the repository at this point in the history
Bugfix/arm auto release 0.3.5
  • Loading branch information
yotamloe authored Jun 23, 2024
2 parents 219f922 + 20d5b2a commit 8ebd38d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
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

0 comments on commit 8ebd38d

Please sign in to comment.